The Prices API gives you access to the current lowest ask for every CS2 item across all tracked marketplaces. You can query a single item, batch up to 100 items in one request, stream the entire live catalog as NDJSON, retrieve OHLCV candles for charting, and page through raw historical price records. All price values are returned in minor units of the response currency.Documentation Index
Fetch the complete documentation index at: https://docs.cs2cap.com/llms.txt
Use this file to discover all available pages before exploring further.
GET /prices — List prices
Returns the current lowest ask across marketplaces. You can filter by item, phase, provider, and currency. Valid filters with no current matches return200 with an empty items array; 503 indicates the data source is temporarily unavailable.
Tiers: free · starter · pro · quant
Parameters
Filter by item ID. Takes precedence over
market_hash_name and phase when provided.Exact item name as it appears in inventory. Ignored when
item_id is provided.Doppler or Gamma Doppler phase filter. Can be used without
market_hash_name. One of: Phase 1, Phase 2, Phase 3, Phase 4, Ruby, Sapphire, Black Pearl, Emerald.Provider keys to include. Repeat the parameter to pass more than one:
providers=steam&providers=buff163. Valid keys: avanmarket, buff163, buffmarket, c5, csdeals, csfloat, csgo500, csgoempire, csmoney_m, csmoney_t, cstrade, dmarket, dupefi, ecosteam, gameboost, haloskins, itradegg, lisskins, lootfarm, mannco, marketcsgo, pirateswap, rapidskins, shadowpay, skinbaron, skinflow, skinland, skinout, skinplace, skinport, skinscom, skinsmonkey, skinswap, skinvault, steam, swapgg, tradeit, waxpeer, whitemarket, youpin.Target currency. Accepts 160+ ISO 4217 codes. See
GET /fx for the full list.Results per page. Defaults to the caller’s effective tier cap:
100 for Free, 1000 for Starter, Pro, and Quant.Pagination offset.
Response example
Response fields
Provider key for this listing.
Unique catalog item ID.
Full item name as it appears in the Steam economy.
Doppler phase, or
null for non-phased items.Current best ask price in minor units of the response currency. For example,
531143 in USD = $5,311.43.lowest_ask as a decimal string with adaptive precision: two decimal places at or above 1.0, eight below it. Use this for low-value currencies such as crypto, where the integer lowest_ask rounds to 0 (for example a $25.50 skin in BTC returns lowest_ask = 0, lowest_ask_decimal = "0.00041600").Number of listings at or near the lowest ask on this provider.
CS2Cap tracked redirect URL. Available on all tiers.
Direct marketplace URL. Returned on Pro and Quant only.
When the price or quantity last changed.
When this record was last refreshed, even if the price stayed the same.
If the item exists in the catalog but none of the selected providers currently has a listing, the endpoint returns
200 with items: [].POST /prices — Stream full prices snapshot
Streams the complete live prices catalog as NDJSON, with one JSON object per line. The snapshot is captured once at request start and then streamed in full. Tiers:pro · quantRate limit: 1 request per 5 minutes per API key
Query parameters
Optional. Repeat to restrict the stream to specific providers. Uses the same provider keys as
GET /prices. If omitted, all providers are included.Response example
POST /prices/batch — Batch prices lookup
Returns current lowest asks for up to 100 items in a single request, grouped by item ID across the selected providers. Tiers:starter · pro · quant
Request body
Array of item IDs to fetch. Provide at least one of
item_ids or market_hash_names.Array of market hash names to fetch. Provide at least one of
item_ids or market_hash_names.Provider keys to include. If omitted, all providers are queried.
Request example
Response example
Array of results, one entry per resolved item.
Item IDs (including those resolved from
market_hash_names) that returned no quotes on any queried provider.market_hash_names that could not be resolved to any catalog item.GET /prices/candles — Price candles (OHLCV)
Returns composite OHLCV candles across all providers for the resolved item. Supports5m, 1h, and 1d intervals. Empty buckets can optionally be forward-filled.
Tiers: free (1d only) · starter (1d only) · pro · quant
Parameters
Item ID to query. Required if
market_hash_name is not provided.Exact item name. Required if
item_id is not provided.Doppler or Gamma phase filter. One of:
Phase 1, Phase 2, Phase 3, Phase 4, Ruby, Sapphire, Black Pearl, Emerald.Inclusive ISO 8601 start timestamp. Accepts
YYYY-MM-DD or YYYY-MM-DDThh:mm:ss.Exclusive ISO 8601 end timestamp. Defaults to the current time when omitted.
Duration shorthand such as
7d or 30. When sent with start or end, lookback takes precedence and selects a completed time window. For interval=1h, the window includes a short delay to ensure the latest bucket is fully complete.Candle interval. One of:
5m, 1h, 1d.Forward-fill empty buckets using the previous close.
Target currency. Use
/v1/fx for the currently supported currency codes. Unsupported codes return 422; temporary FX-rate unavailability returns 503.Response example
meta.start and meta.end describe the effective query window. With fill=false, data can be sparse inside that window; use fill=true to forward-fill empty buckets.
Response fields
Unix timestamp in seconds for the start of the candle bucket.
Open price — the lowest ask price at the start of the bucket, in minor units.
High price in minor units. Unusually high values are capped to reduce the impact of outliers.
Low price in minor units. The lowest ask observed across providers in this bucket.
Close price — the lowest ask price at the end of the bucket, in minor units.
Estimated trade volume for the bucket. Derived from inventory changes rather than reported sale counts.
Total number of active listings at the end of the bucket. May be
null for older 1d windows.Identifies which provider contributed the open (
o), high (h), low (l), and close (c) values for this candle.Data retention
| Interval | Retention |
|---|---|
5m | 7 days |
1h | 30 days |
1d | 365 days |
Free and Starter accounts may only use
interval=1d. The fill, start, and end parameters are not available on those tiers — use lookback instead.GET /prices/history — Price history
Returns historical price records for one item, optionally filtered to a single provider. Results are ordered newest-first and use cursor pagination. Tiers:pro · quant
Parameters
Filter by item ID. Takes precedence over
market_hash_name and phase when provided.Exact item name as it appears in inventory.
Doppler or Gamma phase filter. One of:
Phase 1, Phase 2, Phase 3, Phase 4, Ruby, Sapphire, Black Pearl, Emerald.A single provider key, for example
provider=steam. Returns records from that provider only.Inclusive ISO 8601 timestamp. Accepts
YYYY-MM-DD or YYYY-MM-DDThh:mm:ss. Defaults to the last 14 days when omitted.Exclusive ISO 8601 timestamp.
Target currency. Accepts 160+ ISO 4217 codes.
Results per page. Range: 1–1000.
Cursor for keyset pagination. Pass the
next_cursor value from the previous response.Response example
Response fields
Catalog item ID.
Full item name.
Doppler phase or
null.Provider name for this record.
ISO 8601 timestamp of the price observation.
Price in minor units of the response currency.
ISO 4217 currency code for the returned price.
Listing count observed at this timestamp.
pagination.total is always -1 on this endpoint. Use has_next and next_cursor to paginate.