Quickstart

Get live CS2 skin prices in a few minutes. Base URL: https://api.cspriceapi.com.

1. Get a Testkey

Join the Discord to receive your testkey.

Send it as a Bearer token:

Authorization: Bearer YOUR_API_KEY

For production keys and plans, see Plans & Pricing.

2. Fetch latest prices

All listing markets in one call (omit markets for every market your key allows):

curl -s "https://api.cspriceapi.com/v1/prices/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

Limit markets with a CSV query:

curl -s "https://api.cspriceapi.com/v1/prices/latest?markets=youpin,buff163,skinport" \
  -H "Authorization: Bearer YOUR_API_KEY"

Or look up specific items (max 100):

curl -s "https://api.cspriceapi.com/v1/prices/latest" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items":["AK-47 | Redline (Field-Tested)"],"markets":"youpin,buff163"}'

Interactive docs for this endpoint: Latest prices.

3. Doppler phases

Doppler and Gamma Doppler items are priced per phase, not averaged. Look for doppler_phase on the item (Phase 1–4, Ruby, Sapphire, Black Pearl, Emerald). A Ruby is never compared against a Phase 2.

4. Specs and interactive docs

Import the YAML into Postman, Insomnia, or a code generator. Most prices update about every 5 minutes, depending on the marketplace. Doppler phases included.

Next

This page as Markdown (.md)