curl --request GET \
--url 'https://openapi.msu.io/v1rc1/gamemeta/quests/{questId}' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/gamemeta/quests/{questId}', {
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/gamemeta/quests/{questId}"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"questMetadata": {}
}
}GameMeta
Get quest metadata
Retrieve metadata for a specific quest using its quest ID
GET
/
v1rc1
/
gamemeta
/
quests
/
{questId}
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/gamemeta/quests/{questId}' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/gamemeta/quests/{questId}', {
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/gamemeta/quests/{questId}"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"questMetadata": {}
}
}Path parameters
The quest ID
Response
Indicates if the request was successful
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/gamemeta/quests/{questId}' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/gamemeta/quests/{questId}', {
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/gamemeta/quests/{questId}"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
⌘I

