curl --request POST \
--url 'https://openapi.msu.io/v1rc1/msn/rewards/{worldId}' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY' \
--data '{
"layerDescs": [
{
"layerId": 0,
"layerType": "LAYER_TYPE_NONE"
}
]
}'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/rewards/{worldId}', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
layerDescs: [
{
layerId: 0,
layerType: 'LAYER_TYPE_NONE'
}
]
})
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/rewards/{worldId}"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
body = {
"layerDescs": [
{
"layerId": 0,
"layerType": "LAYER_TYPE_NONE"
}
]
}
response = requests.post(url, headers=headers, json=body)
data = response.json()
{
"success": true,
"data": {
"worldId": null,
"rewardInformations": {},
"updatedAt": "string"
}
}
Rewards
Get Reward Information
Retrieve reward status information including drop rates, inventory for fields, bosses, and contents.
POST
/
v1rc1
/
msn
/
rewards
/
{worldId}
curl --request POST \
--url 'https://openapi.msu.io/v1rc1/msn/rewards/{worldId}' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY' \
--data '{
"layerDescs": [
{
"layerId": 0,
"layerType": "LAYER_TYPE_NONE"
}
]
}'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/rewards/{worldId}', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
layerDescs: [
{
layerId: 0,
layerType: 'LAYER_TYPE_NONE'
}
]
})
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/rewards/{worldId}"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
body = {
"layerDescs": [
{
"layerId": 0,
"layerType": "LAYER_TYPE_NONE"
}
]
}
response = requests.post(url, headers=headers, json=body)
data = response.json()
{
"success": true,
"data": {
"worldId": null,
"rewardInformations": {},
"updatedAt": "string"
}
}
Path parameters
integer
required
The worldId
Body parameters
array
Response
boolean
Indicates if the request was successful
curl --request POST \
--url 'https://openapi.msu.io/v1rc1/msn/rewards/{worldId}' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY' \
--data '{
"layerDescs": [
{
"layerId": 0,
"layerType": "LAYER_TYPE_NONE"
}
]
}'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/rewards/{worldId}', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-nxopen-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
layerDescs: [
{
layerId: 0,
layerType: 'LAYER_TYPE_NONE'
}
]
})
});
const data = await response.json();
import requests
url = "https://openapi.msu.io/v1rc1/msn/rewards/{worldId}"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
body = {
"layerDescs": [
{
"layerId": 0,
"layerType": "LAYER_TYPE_NONE"
}
]
}
response = requests.post(url, headers=headers, json=body)
data = response.json()
{
"success": true,
"data": {
"worldId": null,
"rewardInformations": {},
"updatedAt": "string"
}
}

