curl --request GET \
--url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/characters?isTradable=true&name=string&cursor=string&size=0' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/characters?isTradable=true&name=string&cursor=string&size=0', {
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/accounts/{walletAddress}/characters"
params = {
"isTradable": True
"name": "string"
"cursor": "string"
"size": 0
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"characters": [],
"nextCursor": "string",
"hasMore": false
}
}
Accounts
Get Character List
Retrieve a list of characters associated with the given wallet address. Pagination is supported, with range of 1 to 100 items per page. Default pagination: pageNo=1, pageSize=10
GET
/
v1rc1
/
accounts
/
{walletAddress}
/
characters
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/characters?isTradable=true&name=string&cursor=string&size=0' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/characters?isTradable=true&name=string&cursor=string&size=0', {
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/accounts/{walletAddress}/characters"
params = {
"isTradable": True
"name": "string"
"cursor": "string"
"size": 0
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"characters": [],
"nextCursor": "string",
"hasMore": false
}
}
Path parameters
The wallet address to query
Query parameters
isTradable
name
cursor
size
Response
Indicates if the request was successful
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/accounts/{walletAddress}/characters?isTradable=true&name=string&cursor=string&size=0' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/accounts/{walletAddress}/characters?isTradable=true&name=string&cursor=string&size=0', {
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/accounts/{walletAddress}/characters"
params = {
"isTradable": True
"name": "string"
"cursor": "string"
"size": 0
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"characters": [],
"nextCursor": "string",
"hasMore": false
}
}
⌘I

