Skip to main content
// FEATURE

CS2 Price API

Retrieve real-time CS2 skin prices from supported marketplaces. Query lowest ask and listing quantity by item, or fetch prices in bulk using the batch endpoint.

GET /v1/prices?market_hash_name="Karambit | Gamma Doppler"&phase=Phase 3
curl https://api.cs2c.app/v1/prices?market_hash_name="Karambit | Gamma Doppler"&phase=Phase 3

{
  "meta": {
    "currency": "USD",
    "filters": {
      "market_hash_name": "★ Karambit | Gamma Doppler (Factory New)",
      "phase": "Phase 3"
  },
  "items": [
    {
      "provider": "buff163",
      "market_hash_name": "★ Karambit | Gamma Doppler (Factory New)",
      "phase": "Phase 3",
      "lowest_ask": 163387,
      "quantity": 808,
      "url": "https://buff.163.com/goods/43011?from=market#tag_ids=447197",
      "last_updated": "2026-05-14T04:23:24.604764Z"
    },
    {
      "provider": "youpin",
      "market_hash_name": "★ Karambit | Gamma Doppler (Factory New)",
      "phase": "Phase 3",
      "lowest_ask": 161346,
      "quantity": 851,
      "url": "https://youpin898.com/market/goods-list?templateId=43529",
      "last_updated": "2026-05-14T04:21:52.563935Z"
    }
  ],
  "pagination": {
    "limit": 1000,
    "offset": 0,
    "total": 28,
  }
}
// OVERVIEW

MULTI-MARKETPLACE PRICING

The Prices API returns the lowest ask price and listing quantity for CS2 items across supported providers. You can query by item ID or market hash name, filter by provider, and retrieve results with pagination. The batch endpoint accepts multiple item IDs in a single request.

// SUPPORTED DATA

WHAT'S INCLUDED

LOWEST ASK

Current lowest listed price per provider, returned with listing quantity and timestamp.

BATCH PRICING

Submit multiple item IDs in one POST request to get quotes from all queried providers.

MULTI-PROVIDER

Each response includes data from all providers that have active listings for the queried item.

PROVIDER FILTERING

Optionally restrict results to specific providers using the requested_providers parameter.

// USE CASES

WHAT YOU CAN BUILD

BEST-PRICE LOOKUP

Find the cheapest listing across all supported marketplaces for any item in a single request.

COMPARISON WIDGETS

Build price comparison tools that show users listing data from multiple providers side by side.

SPREAD ANALYSIS

Compare lowest ask across providers to identify pricing discrepancies between marketplaces.

BULK VALUATION

Use the batch endpoint to price entire inventories or watchlists in one call.

// FAQ

COMMON QUESTIONS

How many providers are queried per request?

By default, all supported providers are queried. You can restrict this using the requested_providers filter.

What currency is pricing returned in?

Prices are returned in the currency specified in the request. The currency is included in the response metadata.

How does batch pricing work?

POST an array of item IDs to the batch endpoint. The response returns the lowest ask from each provider for every requested item.

Are listing quantities included?

Yes. Each price entry includes the quantity of listings at that price point.

// MARKETPLACES

RELATED PROVIDERS

READY TO
INTEGRATE?

Explore the full API reference, endpoints, and pricing.