curl --request GET \
--url 'https://openapi.msu.io/v1rc1/characters/{assetKey}/history-missions?mainCategory=HISTORY_MISSION_MAIN_CATEGORY_CHARACTER' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/characters/{assetKey}/history-missions?mainCategory=HISTORY_MISSION_MAIN_CATEGORY_CHARACTER', {
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/characters/{assetKey}/history-missions"
params = {"mainCategory": "HISTORY_MISSION_MAIN_CATEGORY_CHARACTER"}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"historyMissions": [],
"nextCursor": "string",
"hasMore": false
}
}
Characters
Get character history mission list
Retrieve character history mission information with optional filtering by main and sub categories
GET
/
v1rc1
/
characters
/
{assetKey}
/
history-missions
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/characters/{assetKey}/history-missions?mainCategory=HISTORY_MISSION_MAIN_CATEGORY_CHARACTER' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/characters/{assetKey}/history-missions?mainCategory=HISTORY_MISSION_MAIN_CATEGORY_CHARACTER', {
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/characters/{assetKey}/history-missions"
params = {"mainCategory": "HISTORY_MISSION_MAIN_CATEGORY_CHARACTER"}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"historyMissions": [],
"nextCursor": "string",
"hasMore": false
}
}
Path parameters
string
required
The character asset key
Query parameters
string
Filter by main category. Options:
HISTORY_MISSION_MAIN_CATEGORY_CHARACTER, HISTORY_MISSION_MAIN_CATEGORY_ITEM, HISTORY_MISSION_MAIN_CATEGORY_ADVENTURE, HISTORY_MISSION_MAIN_CATEGORY_BATTLE, HISTORY_MISSION_MAIN_CATEGORY_BLOCKCHAIN, HISTORY_MISSION_MAIN_CATEGORY_SOCIALstring
Filter by sub category
string
Pagination cursor for next page
Response
boolean
Indicates if the request was successful
object
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/characters/{assetKey}/history-missions?mainCategory=HISTORY_MISSION_MAIN_CATEGORY_CHARACTER' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/characters/{assetKey}/history-missions?mainCategory=HISTORY_MISSION_MAIN_CATEGORY_CHARACTER', {
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/characters/{assetKey}/history-missions"
params = {"mainCategory": "HISTORY_MISSION_MAIN_CATEGORY_CHARACTER"}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"historyMissions": [],
"nextCursor": "string",
"hasMore": false
}
}
Notes
- Pagination is supported, with 20 items per page

