Skip to main content
// FEATURE

CS2 Price History API

Retrieve historical CS2 skin pricing data as time-series snapshots or OHLCV candlestick charts. Track price movements over time with intervals starting at 5 minutes.

GET /v1/prices/history?market_hash_name="AWP | Asiimov"
curl https://api.cs2c.app/v1/prices/history?market_hash_name="AWP | Asiimov"

{
  "meta": {
    "currency": "USD",
    "filters": {
      "market_hash_name": "AWP | Asiimov (Field-Tested)",
      "start": "2026-04-09T07:15:45.331530Z",
      "end": null
    },
    "result_count": 1000
  },
  "items": [
    {
      "item_id": 15065,
      "market_hash_name": "AWP | Asiimov (Field-Tested)",
      "provider": "Youpin898",
      "time": "2026-05-14T05:00:00Z",
      "price": 11605,
      "quantity": 2354
    },
    {
      "item_id": 15065,
      "market_hash_name": "AWP | Asiimov (Field-Tested)",
      "provider": "WAXPEER",
      "time": "2026-05-14T05:00:00Z",
      "price": 12335,
      "quantity": 36
    }
  ]
}
// OVERVIEW

TIME-SERIES PRICE DATA

The Price History API provides two types of historical data: price snapshots (individual data points with provider, price, and timestamp) and candlestick data (aggregated OHLCV bars). Candlestick intervals are available from 5 minutes up. Both endpoints support filtering by item, provider, and time range.

// SUPPORTED DATA

WHAT'S INCLUDED

PRICE SNAPSHOTS

Individual historical price points with timestamp, provider, price, currency, and quantity.

OHLCV CANDLES

Aggregated open/high/low/close/volume bars with configurable intervals from 5 minutes.

TIME RANGE FILTERS

Filter snapshots and candles by start and end timestamps.

PROVIDER BREAKDOWN

Candlestick data includes which provider contributed the high and low for each bar.

// USE CASES

WHAT YOU CAN BUILD

PRICE CHARTS

Build interactive price charts using candlestick data with customizable time intervals.

TREND ANALYSIS

Track price trends over days, weeks, or months using historical snapshots.

BACKTESTING

Use historical data to test trading strategies against past market conditions.

REPORTING

Generate periodic price reports for items or portfolios using time-range filtered data.

// FAQ

COMMON QUESTIONS

What is the smallest candlestick interval?

The minimum candlestick interval is 5 minutes.

Can I get history for a specific provider?

Yes. Both price snapshots and candles can be filtered by provider.

What data is in each candle?

Each candle includes open, high, low, close, volume, and optionally the number of sales. The response also indicates which provider contributed the high and low.

How far back does historical data go?

Data availability depends on when tracking started for each item and provider. Use the time range filters to query specific periods.

READY TO
INTEGRATE?

Explore the full API reference, endpoints, and pricing.