REST

List Marketplaces

Get the list of third-party marketplaces supported by the REST API, including which games each marketplace covers.

Endpoint

Returns the list of marketplaces currently served by the REST API and the games each one covers. This is a static list — for live sales and buy-order availability see Reference.

GET   /v2/marketplaces

Query parameters

None.

Authentication

See REST overview for base URL, authentication, and error shape.

Response fields

The response is an array of marketplace objects.

FieldTypeDescription
marketplacestringMarketplace name (e.g. Buff163)
gamesarrayArray of game info objects with per-game stats

Game info object

FieldTypeDescription
gamestringGame code (e.g. CS2, Dota2)
itemCountnumberTotal number of tracked items for this game on this marketplace
offerCountnumberTotal number of currently listed offers
salesCountnumberTotal number of recorded sales
priceHistoryDaysnumberNumber of days of price history available

Response example

response.json
[
  {
    "marketplace": "Buff163",
    "games": [
      {
        "game": "CS2",
        "itemCount": 12345,
        "offerCount": 67890,
        "salesCount": 1234,
        "priceHistoryDays": 30
      },
      {
        "game": "Dota2",
        "itemCount": 5678,
        "offerCount": 23456,
        "salesCount": 567,
        "priceHistoryDays": 15
      }
    ]
  },
  {
    "marketplace": "CSFloat",
    "games": [
      {
        "game": "CS2",
        "itemCount": 9876,
        "offerCount": 54321,
        "salesCount": 2345,
        "priceHistoryDays": 30
      }
    ]
  }
]