Skip to main content

Out of Stock

The /v1/sales/out-of-stock endpoint provides information about in-game items that are currently out of stock on Skinport. The response includes key details such as the suggested price, average sale price, and the number of sales for the item in the last 90 days.

HTTP Request

GET /v1/sales/out-of-stock

Authorization

No authorization required.

Cache

Endpoint is cached for 1 hour.

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).

Example Request

sales-out-of-stock.js
const params = new URLSearchParams({
app_id: 730,
currency: 'EUR',
});

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

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

Example Response

console.log(data)
[
{
"market_hash_name": "Souvenir AWP | Desert Hydra (Factory New)",
"version": null,
"currency": "EUR",
"suggested_price": 9995.66,
"avg_sale_price": 6287.45,
"sales_last_90d": 6
},
{
"market_hash_name": "★ Butterfly Knife | Gamma Doppler (Factory New)",
"version": "Emerald",
"currency": "EUR",
"suggested_price": 15110.53,
"avg_sale_price": 11786.21,
"sales_last_90d": 2
},
{
"market_hash_name": "★ Sport Gloves | Vice (Factory New)",
"version": null,
"currency": "EUR",
"suggested_price": 26309.29,
"avg_sale_price": 22484.59,
"sales_last_90d": 1
},
{
"market_hash_name": "★ Sport Gloves | Pandora's Box (Minimal Wear)",
"version": null,
"currency": "EUR",
"suggested_price": 9099.2,
"avg_sale_price": 5762.36,
"sales_last_90d": 3
}
]