curl --request GET \
--url 'https://openapi.msu.io/v1rc1/msn/server?world_id=1' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/server?world_id=1', {
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/server"
params = {
"world_id": 1
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"informations": []
}
}
Rewards
Get Server Info
Retrieve server information for specified worlds including world ID, world name, and server state.
GET
/
v1rc1
/
msn
/
server
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/msn/server?world_id=1' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/server?world_id=1', {
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/server"
params = {
"world_id": 1
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"informations": []
}
}
Query parameters
List of world IDs to query
Response
Indicates if the request was successful
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/msn/server?world_id=1' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/msn/server?world_id=1', {
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/server"
params = {
"world_id": 1
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"informations": []
}
}
⌘I

