MARKETPLACE API
CSFloat
P2P

CSFloat API

CSFloat'tan float-aware CS2 ilanları, takip ettiğimiz her diğer pazaryeriyle birleştirildi, tek bir REST endpoint arkasında.

http://csfloat.com

Tracked items

Active listings (24h)

Last update

Refresh cadence

Between scrapes

24h Volume

Sum price × quantity

Games supported on CSFloat

Query CSFloat via our API

Filter the unified /steam/api/items endpoint with markets=csfloat to return only CSFloat listings — or omit it for a side-by-side view across every marketplace.

  • Single auth header, same JSON schema for every market.
  • Filter by game, item name, price range, float.
  • Sort by price, listing volume, or recency.
  • Same DTO across REST and WebSocket streams.
CSFloat API Request
# curl with API key
curl "https://www.steamwebapi.com/steam/api/items?key=$KEY&markets=csfloat&game=cs2"
# PHP
$res = file_get_contents('https://www.steamwebapi.com/steam/api/items?key=' . $KEY . '&markets=csfloat');
$items = json_decode($res, true);
# Node.js / JavaScript
const r = await fetch(`https://www.steamwebapi.com/steam/api/items?key=${KEY}&markets=csfloat`);
const items = await r.json();

Dedicated CSFloat endpoints

On top of the unified /steam/api/items route, every market we cover gets two convenience endpoints — one schema, one auth header, every marketplace.

GET /market/csfloat/prices

Live prices snapshot

Returns the current CSFloat catalogue as a flat array. Each row is one item with the lowest active price we have on record.

Sample response
[
  {
    "market_hash_name": "Souvenir UMP-45 | Gunsmoke (Minimal Wear)",
    "price": 130.69,
    "quantity": 1,
    "createdat": "2026-05-26T00:00:00+00:00",
    "variants": null
  },
  {
    "market_hash_name": "Sticker | Slab (Foil) | Krakow 2017",
    "price": 114.65,
    "quantity": 1,
    "createdat": "2026-05-26T00:00:00+00:00",
    "variants": null
  }
]
  • · Same JSON schema across every marketplace we cover.
  • · We surface the lowest price per item — never an average, never a stale tick.
  • · Optionally filter by market_hash_name or convert prices via ?currency=EUR.
GET /market/csfloat/history

Per-item price history

Daily-snapshot history of the lowest CSFloat price for a given item, ideal for charts and portfolio trackers.

Sample response
[
  {
    "createdat": "2026-05-19T00:00:00+00:00",
    "price": 124.40,
    "quantity": 1
  },
  {
    "createdat": "2026-05-25T00:00:00+00:00",
    "price": 130.69,
    "quantity": 1
  }
]
  • · One row per day, always the lowest price we recorded for that day.
  • · Bounded with start_date and end_date (YYYY-MM-DD).
  • · market_hash_name is required — history is per-item, not per-market.

Prefer one call across every marketplace? Use the unified /steam/api/items endpoint with markets=… — same DTO, comparison data included.

CSFloat vs. other marketplaces

All marketplaces
Marketplace Tracked items
Waxpeer http://waxpeer.com 20,438
Skinbaron http://skinbaron.de 20,043
Bitskins http://www.bitskins.com 16,840
CSGOcom http://market.csgo.com 24,885
HaloSkins http://www.haloskins.io

About CSFloat

CSFloat, özellikle float değerleri ve sticker özgünlüğü etrafında tasarlanmış en güvenilir batı CS2 pazaryerlerinden biridir. Uygulamanız bir item'ın tam float'ını önemsiyorsa — arbitrage için, portfolio takibi için veya low-float trophy'leri sergilemek için — CSFloat, float aralığına göre native olarak filtrelemenize izin veren birkaç veri kaynağından biridir.

CSFloat API — FAQ

CSFloat nedir?

CSFloat, float değerleri ve sticker özgünlüğü üzerine odaklanmış bir batı CS2 pazaryeridir. CS2 ekosistemindeki en güvenilir P2P pazaryerlerinden biri olarak geniş çapta kabul edilir.

Which games does CSFloat support?

CSFloat is CS2-exclusive — it doesn't list other Steam games. Our API surfaces its full CS2 catalogue alongside the same items on Buff, Skinport and others.

CSFloat fiyatlarına nasıl erişirim?

Bir API anahtarı alın ve markets=csfloat ile /steam/api/items'ı çağırın. Yanıt float değerlerini içerir — ek request olmadan float'a göre filtreleyin veya sıralayın.

How fresh are CSFloat prices?

We scrape CSFloat on a regular cadence — check the 'Last refresh' stat above for the most recent pull. Hot items refresh more often than the long tail.

CSFloat güvenli mi?

CSFloat, CS2'deki en güvenli P2P pazaryerlerinden biri olarak geniş çapta tanınmaktadır. Yine de — işlem yapmadan önce doğrudan pazaryeriyle doğrulayın.

Start querying CSFloat in minutes

One key. One schema. Every marketplace.