REST
Price History
Time-series price history for a single item on a single marketplace.
Endpoint
Returns a time series of historical prices for a single item on a single marketplace. Useful for charts and trend analysis.
GET /v2/price-history
Query parameters
marketplace
string
Marketplace name.
game
string
Game code (e.g.
CS2, Dota2, Rust, TF2).name
string
Full item market name.
days
number
How many days of history to return. Defaults to
15.dataPoints
number
Maximum number of data points to return. The server downsamples evenly across the window. Defaults to
100.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 history is from |
game | string | Game the item belongs to |
history | array | Array of price points |
Price point
| Field | Type | Description |
|---|---|---|
timestamp | number | Unix timestamp of the data point |
priceUSD | number|null | Price in USD |
priceEUR | number|null | Price in EUR |
priceCNY | number|null | Price in CNY |
priceRUB | number|null | Price in RUB |
Response example
response.json
{
"name": "AK-47 | Redline (Field-Tested)",
"marketplace": "Buff163",
"game": "CS2",
"history": [
{
"timestamp": 1710547200,
"priceUSD": 44.10,
"priceEUR": 40.80,
"priceCNY": 312.00,
"priceRUB": 4025.00
},
{
"timestamp": 1710633600,
"priceUSD": 45.99,
"priceEUR": 42.50,
"priceCNY": 325.00,
"priceRUB": 4200.00
}
]
}