Best CS2 Skin Price APIs in 2026

Updated

The best choice depends on the job. Use cs2.sh for deep CS2 history, completed sales, variants, liquidity, and Steam orderbooks; Pricempire for broad multi-market coverage and trading analytics; CSGOSKINS.GG for a CS2-only listing feed across 36 markets; SteamWebAPI for broad Steam, inventory, float, and marketplace tools at lower starting prices; or SteamApis for modular multi-game marketplace feeds, sales, and WebSocket offers.

Choose by the data you cannot compromise on#

Primary need Strongest fit Why
Intraday ask and bid OHLC, multi-year archives, completed sales, variant history, liquidity, or full Steam depth cs2.sh Six CS2 marketplaces with each price and count clearly labeled
The broadest current marketplace feed plus comparison and portfolio tooling Pricempire 40+ marketplaces and more trading tools
A flat CS2-only listing feed across many markets CSGOSKINS.GG 36 markets, five-minute updates, and 90-day or 365-day listing history
Steam inventory, float, profile, trade, and broad market endpoints in one account SteamWebAPI Many Steam-focused endpoints, phase pricing, and paid plans from EUR 25 for production-scale item access
Live multi-market offers or per-sale metadata across supported sources SteamApis 26-market WebSocket coverage, REST buy orders, and optional sales access

What each provider is actually selling#

cs2.sh#

cs2.sh is the depth-first option. It provides current sell listings and buy orders for BUFF, Youpin, CSFloat, Skinport, Steam, and C5Game; ask and bid OHLC at 5-minute through daily intervals; long-term archive history from 2023; CSFloat daily sale averages and counts from 2022; Steam daily sale medians from 2013; sampled Youpin sales; daily liquidity and estimated sale time; BUFF float and fade buckets; and latest plus historical full-depth Steam orderbooks.

Developer is $75 per month for current-price endpoints. Scale is $200 for all endpoints. Both include unlimited requests at 10 requests per second. See cs2.sh pricing.

Pricempire#

Pricempire's official API page advertises 40+ marketplaces, one-minute price updates, multi-game coverage, and broader portfolio and comparison tools. Its current API includes provider prices and a numeric liquidity field. The current paid plans are $119.90 for 10,000 monthly calls and $239.90 for 100,000 calls with historical and inventory access. Its documented API history endpoint is Enterprise-only and accepts a maximum 180-day date range.

Choose it when marketplace breadth or its broader trading product matters more than intraday OHLC, long public archive depth, or full Steam orderbook history.

CSGOSKINS.GG#

CSGOSKINS.GG currently reports 36 CS2 markets and 38,525 items. It explicitly tracks current and historical listing prices, not completed-sale prices; its volume field is currently available only for Steam. Pro is EUR 179 with up to 90 days of daily history, while Business is EUR 279 with up to 365 days and advanced item data.

Choose it for a broad, CS2-only listing feed with predictable monthly pricing. Check its API documentation for display restrictions, pagination, and endpoint limits before designing a public product.

SteamWebAPI#

SteamWebAPI combines Steam item, inventory, float, profile, trade, and third-party marketplace APIs. It supports current normalized marketplace prices, Doppler and Gamma Doppler phases, and dedicated marketplace history endpoints. Its public BUFF page reports a roughly six-hour refresh cadence for that source.

The current pricing page says paid plans unlock all endpoints and mainly differ by rate limits. Starter is EUR 25 for 10,000 global monthly requests; Pro is EUR 50 for 100,000; Pro+ is EUR 120 for 1,000,000. The free plan is useful for testing but excludes the full items endpoint.

SteamApis#

SteamApis v2 covers Steam data plus a 26-market marketplace layer. Its REST API exposes price history, buy orders where available, and recent individual sales with float, paint seed, and stickers where the source supplies them. A WebSocket stream provides live offers.

Pricing is assembled from modules: third-party market data starts at EUR 49.99, 15-day history at EUR 54.99, 30-day history at EUR 64.99, WebSocket access at EUR 39.99, and sales access at EUR 49.99. Request plans start with 500 free calls and paid usage tiers.

Decision rules that prevent a bad fit#

  • Decide whether “price” means a sell listing, a buy order, a completed sale, or an average or median of sales.
  • Verify exact history start dates and granularity, not a generic historical-data claim.
  • Check whether variants are first-class records or only text labels.
  • Calculate the request volume for full snapshots, history backfills, and refreshes.
  • Verify public display and redistribution terms before building a customer-facing product.
  • Run the same ten-item test set through finalists, including an illiquid item, a Doppler phase, and missing data.

What cs2.sh returns#

For the CS2-specific end of that list, a single request carries six marketplaces under one item identity:

bash
curl -X POST https://api.cs2.sh/v1/prices/latest \
  -H "Authorization: Bearer <<YOUR_API_KEY>>" \
  -H "Accept-Encoding: gzip" --compressed \
  -H "Content-Type: application/json" \
  -d '{"items": ["USP-S | Printstream (Factory New)"]}'
json
"buff": {
  "updated_at": "2026-07-26T18:50:53Z",
  "collected_at": "2026-07-26T18:53:10.67Z",
  "ask": 109.72,
  "ask_volume": 463,
  "bid": 106.17,
  "bid_volume": 41
}
Dataset Endpoint Coverage
Current prices, six marketplaces GET /v1/prices/latest ~5 min refresh, all plans
Ask and bid OHLC POST /v1/prices/history From December 24, 2025
Long-term prices and supply POST /v1/archive/history From 2023
CSFloat completed sales POST /v1/archive/csfloat Daily from 2022
Steam native sale graph POST /v1/archive/steam Daily from April 26, 2013
Youpin sampled sales POST /v1/archive/youpin 12h from November 12, 2025
Full Steam orderbooks GET /v1/market/steam/latest ~5 min refresh, all plans
BUFF float and fade bands GET /v1/market/buff/latest 10 min refresh, all plans
Item schema, ~47,500 items GET /v1/schema Updated on game updates, all plans
Liquidity and estimated sale time GET /v1/liquidity/items Recomputed daily

The item schema and current prices are available on every plan, including Demo and Developer, so the identity layer and live pricing can be evaluated before any paid tier.

Disclosure: this comparison is published by cs2.sh. Provider facts and prices were checked against official pages on August 4, 2026; verify them again before purchasing.