curl --request POST \
--url 'https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY' \
--data '{}'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({})
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.post(url, headers=headers, json={})
data = response.json()
{
"success": true,
"data": {
"worldId": null,
"rewardHistories": {},
"updatedAt": "string"
}
}
Rewards
Get Reward History
Retrieve reward draw history (up to 30 days after the draw).
POST
/
v1rc1
/
msn
/
rewards
/
{worldId}
/
history
curl --request POST \
--url 'https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY' \
--data '{}'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({})
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.post(url, headers=headers, json={})
data = response.json()
{
"success": true,
"data": {
"worldId": null,
"rewardHistories": {},
"updatedAt": "string"
}
}
Path parameters
The worldId
Response
Indicates if the request was successful
curl --request POST \
--url 'https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY' \
--data '{}'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({})
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/rewards/{worldId}/history"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.post(url, headers=headers, json={})
data = response.json()
{
"success": true,
"data": {
"worldId": null,
"rewardHistories": {},
"updatedAt": "string"
}
}
⌘I

