curl --request GET \
--url 'https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles?walletAddress=string' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles?walletAddress=string', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
}
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles"
params = {
"walletAddress": "string"
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"walletAddress": "string",
"characterAssetKey": "string",
"informations": [],
"updatedAt": "string"
}
}
Rewards
Get Character Raffle Information
Retrieve raffle participation status for a specific character (before the draw).
GET
/
v1rc1
/
msn
/
characters
/
{characterAssetKey}
/
raffles
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles?walletAddress=string' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles?walletAddress=string', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
}
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles"
params = {
"walletAddress": "string"
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"walletAddress": "string",
"characterAssetKey": "string",
"informations": [],
"updatedAt": "string"
}
}
Path parameters
The characterAssetKey
Query parameters
walletAddress
Response
Indicates if the request was successful
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles?walletAddress=string' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles?walletAddress=string', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
}
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/characters/{characterAssetKey}/raffles"
params = {
"walletAddress": "string"
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"walletAddress": "string",
"characterAssetKey": "string",
"informations": [],
"updatedAt": "string"
}
}
⌘I

