Skip to main content

Items

The /v1/items endpoint provides a comprehensive list of items available on the marketplace, along with their associated metadata. This includes details such as item names, pricing, availability, and other relevant attributes.

tip

This endpoint is cached for 5 minutes. To optimize performance and reduce unnecessary requests, avoid calling this endpoint more frequently than once every 5 minutes. Rely on cached responses whenever possible to minimize server load and ensure efficient usage of resources.

HTTP Request

GET /v1/items

Authorization

No authorization required.

Rate Limit

8 requests per 5 minutes.

Cache

Endpoint is cached for 5 minutes.

Encoding

The 'Accept-Encoding': 'br' header is required.

warning

It is generally recommended to use 'Accept-Encoding': 'br' in requests to enable Brotli compression for faster and smaller data transfers. However, for /v1/items endpoint, Brotli compression (br) is required.

Arguments

ParameterTypeRequiredDescription
app_idnumberOptionalThe app_id for the inventory's game (default 730).
currencystringOptionalThe currency for pricing (default EUR - Supported: AUD, BRL, CAD, CHF, CNY, CZK, DKK, EUR, GBP, HRK, NOK, PLN, RUB, SEK, TRY, USD).
tradablebooleanOptionalIf true, it shows only tradable items on the market (default false).

Example Request

items.js
const params = new URLSearchParams({
app_id: 730,
currency: 'EUR',
tradable: 0
});

(async () => {
const response = await fetch(`https://api.skinport.com/v1/items?${params}`, {
method: 'GET',
headers: {
'Accept-Encoding': 'br'
}
});

const data = await response.json();
console.log(data);
})();

Example Response

console.log(data)
[
{
"market_hash_name": "AK-47 | Aquamarine Revenge (Battle-Scarred)",
"currency": "EUR",
"suggested_price": 13.18,
"item_page": "https://skinport.com/item/csgo/ak-47-aquamarine-revenge-battle-scarred",
"market_page": "https://skinport.com/market/730?cat=Rifle&item=Aquamarine+Revenge",
"min_price": 11.33,
"max_price": 18.22,
"mean_price": 12.58,
"median_price": 13.37,
"quantity": 25,
"created_at": 1535988253,
"updated_at": 1568073728
},
{
"market_hash_name": "★ M9 Bayonet | Fade (Factory New)",
"currency": "EUR",
"suggested_price": 319.11,
"item_page": "https://skinport.com/item/csgo/m9-bayonet-fade-factory-new",
"market_page": "https://skinport.com/market/730?cat=Knife&item=Fade",
"min_price": null,
"max_price": null,
"mean_price": null,
"median_price": null,
"quantity": 0,
"created_at": 1535988302,
"updated_at": 1568073725
}
]