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.
| Field | Type | Description |
|---|---|---|
marketplace | string | Marketplace name (e.g. Buff163) |
games | array | Array of game info objects with per-game stats |
Game info object
| Field | Type | Description |
|---|---|---|
game | string | Game code (e.g. CS2, Dota2) |
itemCount | number | Total number of tracked items for this game on this marketplace |
offerCount | number | Total number of currently listed offers |
salesCount | number | Total number of recorded sales |
priceHistoryDays | number | Number 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
}
]
}
]