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

FieldTypeDescription
namestringItem market name
marketplacestringMarketplace the history is from
gamestringGame the item belongs to
historyarrayArray of price points

Price point

FieldTypeDescription
timestampnumberUnix timestamp of the data point
priceUSDnumber|nullPrice in USD
priceEURnumber|nullPrice in EUR
priceCNYnumber|nullPrice in CNY
priceRUBnumber|nullPrice 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
    }
  ]
}