Price history

How to Get BUFF163 Price History with an API

BUFF163 price history via GET /v1/prices/buff163/history — daily for multi-year trends, hourly for intraday charts — plus free interactive charts on every skin detail page.

Endpoint
GET /v1/prices/buff163/history
Granularity
resolution=daily (multi-year) or resolution=hour
Currency
CNY
Live companion
GET /v1/prices/latest?markets=buff163

Quick start

Copy-paste curl example

Authenticate with your Bearer API key. Full reference in the API docs and data coverage.

curl -s "https://api.cspriceapi.com/v1/prices/buff163/history?market_hash_name=AK-47%20%7C%20Redline%20(Field-Tested)" \
  -H "Authorization: Bearer YOUR_API_KEY"

Overview

What CSPriceAPI provides

BUFF163 (NetEase) is the second-largest CN marketplace. Prices track YouPin closely; divergence between BUFF and YouPin history often signals arb windows.

Guide

Reading history correctly

Hourly vs daily. Use resolution=hourly for short-range intraday charts (max ~100 days per request). Use resolution=daily (default) for multi-year backtests and trend analysis. Listing prices are sampled roughly every hour and rolled into daily closes.

Listing history ≠ sales. History tracks listing-price snapshots over time, not every completed trade. Confirm big moves with market sales.

Doppler: Request history per market_hash_name. Phase-specific items may need phase-aware names or separate handling — see Doppler guide.

Missing days: Gaps mean no snapshot stored — interpolate carefully in ML models.

Guide

Cross-market CN analysis

Plot BUFF and YouPin on the same chart (convert to one currency):

  1. Align dates.
  2. spread = buff_price - youpin_price in CNY.
  3. When spread exceeds historical 90th percentile → arbitrage bot candidate.

Guide

No-code charts

  1. Open Browse Skins
  2. Search item → open skin detail
  3. View multi-market history chart (BUFF, YouPin, Western markets)

Faster than building matplotlib for ad-hoc research.

Guide

Backtest sketch

# Load buff + youpin history JSON arrays
# For each day: signal = buff_close - youpin_close
# Simulate: buy cheap market, sell expensive (minus fees)
# Requires: fee model, FX if reporting USD

Pair with historical CS2 guide for other markets.

Related

Continue reading

More guides

Related Price history

Ready to integrate?

Interactive Scalar docs, OpenAPI YAML and machine-readable Markdown mirrors for every endpoint.