API
ReferenceMarket data

Prices

GET
/public/v1/prices

Paginated price list per market hash name, ordered alphabetically. Filter by app_id. Prices are integers in cents; market_price is the Steam-derived market value and recommended_price the suggested listing price; lowest_listing_price is the cheapest live CS Deals listing for that item right now, or null when nobody is selling one. lowest_listing_price is the v1 IPricing/GetLowestPrices number. There are hundreds of thousands of priced items, so paging through the whole set is slow: use GET /public/v1/prices/all for a full snapshot and keep this endpoint for spot checks.

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*$

Response Body

application/json

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