REST
Sales History
Recent completed sales for a single item on a single marketplace, including per-sale metadata.
Endpoint
Returns recent completed sales for a single item on a single marketplace, including per-sale metadata such as float, pattern, and stickers where available.
GET /v2/sales
Coverage
Only a subset of marketplaces expose sales history. The list below is fetched live from the API and reflects which marketplaces currently have sales available.
Loading marketplace availability…
Query parameters
marketplace
string
Marketplace name. Must be a marketplace that exposes sales — see the table above.
game
string
Game code (e.g.
CS2, Dota2, Rust, TF2).name
string
Full item market name.
days
number
How many days of sales history to return. Defaults to
30.Authentication
See REST overview for base URL, authentication, and error shape.
Response fields
| Field | Type | Description |
|---|---|---|
name | string | Item market name |
marketplace | string | Marketplace the sales come from |
game | string | Game the item belongs to |
sales | array | Array of sale records |
Sale record
| Field | Type | Description |
|---|---|---|
timestamp | number | Unix timestamp of the sale |
priceUSD | number|null | Sale price in USD |
priceEUR | number|null | Sale price in EUR |
priceCNY | number|null | Sale price in CNY |
priceRUB | number|null | Sale price in RUB |
float | number|null | Wear value between 0.0 and 1.0 (CS2 only) |
paintIndex | number|null | Skin pattern ID (CS2 only) |
paintSeed | number|null | Pattern seed number (CS2 only) |
stickers | array|null | Applied stickers (CS2 only) |
rarity | string|null | Item rarity (Dota 2 only) |
hero | string|null | Associated hero name (Dota 2 only) |
Response example
response.json
{
"name": "AK-47 | Redline (Field-Tested)",
"marketplace": "Buff163",
"game": "CS2",
"sales": [
{
"timestamp": 1711150800,
"priceUSD": 45.50,
"priceEUR": 42.10,
"priceCNY": 322.00,
"priceRUB": 4160.00,
"float": 0.2341,
"paintIndex": 282,
"paintSeed": 123,
"stickers": [],
"rarity": null,
"hero": null
}
]
}