curl --request GET \
--url 'https://openapi.msu.io/v1rc1/gamemeta/items/{itemId}/exclusive' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/gamemeta/items/{itemId}/exclusive', {
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/items/{itemId}/exclusive"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"items": []
}
}
GameMeta
Get equipment exclusive items
Retrieve a list of items that cannot be equipped simultaneously with the specified item.
GET
/
v1rc1
/
gamemeta
/
items
/
{itemId}
/
exclusive
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/gamemeta/items/{itemId}/exclusive' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/gamemeta/items/{itemId}/exclusive', {
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/items/{itemId}/exclusive"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"items": []
}
}
Path parameters
The itemId to query
Response
Indicates if the request was successful
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/gamemeta/items/{itemId}/exclusive' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/gamemeta/items/{itemId}/exclusive', {
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/items/{itemId}/exclusive"
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
data = response.json()
{
"success": true,
"data": {
"items": []
}
}
⌘I

