API
ReferenceMarket data

Sales history

GET
/public/v1/sales

Recent marketplace sales, newest first. Filter by app_id and/or exact market_hash_name. Each row is one sold order line: the price paid in cents, the amount, and when it sold.

AuthorizationBearer <token>

API key generated from your account settings on the website. Send as Authorization: Bearer csd_....

In: header

Query Parameters

page*string
Match^[1-9]\d*$
limit*string

Value in

  • "5"
  • "10"
  • "25"
  • "30"
  • "50"
  • "100"
app_id?string
Match^[1-9]\d*$
market_hash_name?string
Length1 <= length <= 200

Response Body

application/json

curl -X GET "https://example.com/public/v1/sales?page=string&limit=5"
{  "sales": [    {      "app_id": 1,      "market_hash_name": "string",      "price": -9007199254740991,      "amount": -9007199254740991,      "sold_at": "2019-08-24T14:15:22Z"    }  ],  "metadata": {    "total_pages": -9007199254740991,    "total_items": -9007199254740991,    "current_page": -9007199254740991,    "current_limit": -9007199254740991  }}