curl --request GET \
--url 'https://openapi.msu.io/v1rc1/market/valuation/item?itemId=0&range=90' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/market/valuation/item?itemId=0&range=90', {
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/market/valuation/item"
params = {
"itemId": 0,
"range": 90
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"avgBottomPrice": 0,
"avgTopPrice": 0,
"tradeCount": "string",
"date": "string"
}
}
Market
Get Item Valuation
Retrieve historical valuation data for a specific item, including lower and upper average trade prices.
GET
/
v1rc1
/
market
/
valuation
/
item
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/market/valuation/item?itemId=0&range=90' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/market/valuation/item?itemId=0&range=90', {
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/market/valuation/item"
params = {
"itemId": 0,
"range": 90
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"avgBottomPrice": 0,
"avgTopPrice": 0,
"tradeCount": "string",
"date": "string"
}
}
Retrieve historical valuation data for a specific item, including lower and upper average trade prices. The
range parameter defines the lookback period in days (30/90/180). Defaults to 90.
Query parameters
integer
Item ID to query
integer
Lookback period in days. Accepted values:
30, 90, 180. Defaults to 90.Response
boolean
Indicates if the request was successful
object
curl --request GET \
--url 'https://openapi.msu.io/v1rc1/market/valuation/item?itemId=0&range=90' \
--header 'Content-Type: application/json' \
--header 'x-nxopen-api-key: YOUR_API_KEY'
const response = await fetch('https://openapi.msu.io/v1rc1/market/valuation/item?itemId=0&range=90', {
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/market/valuation/item"
params = {
"itemId": 0,
"range": 90
}
headers = {
"x-nxopen-api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params, headers=headers)
data = response.json()
{
"success": true,
"data": {
"avgBottomPrice": 0,
"avgTopPrice": 0,
"tradeCount": "string",
"date": "string"
}
}

