Developer API

CS2 Float API

Per-Asset Float-Werte, Paint-Seeds, Sticker-Positionen und Inspect-Screenshots – via Inspect-Link oder Asset-ID.

Endpoints

All endpoints return JSON, accept the same auth header, and degrade with a normalised error envelope.

GET /steam/api/float
GET /steam/api/float/assets
GET /steam/api/float/screenshot
GET /float/api/item

CS2 Float API — quickstart

Same auth header as every other endpoint we ship. Get an API key from the dashboard and you're querying inside two minutes.

  • Single auth header, JSON response.
  • Rate limits scale with your plan tier.
  • Full schema in the API reference.
API Request
# curl with API key
curl "https://www.steamwebapi.com/steam/api/float?key=$KEY"
# PHP
$res = file_get_contents('https://www.steamwebapi.com/steam/api/float?key=' . $KEY);
$data = json_decode($res, true);
# Node.js
const r = await fetch(`https://www.steamwebapi.com/steam/api/float?key=${KEY}`);
const data = await r.json();

About this API

Die CS2 Float API liefert den exakten Float, Paint-Seed, Sticker-Layout und einen server-gerenderten Inspect-Screenshot für jedes CS2-Asset. Plug it in für float-bewusste Marktplätze, Low-Float-Trophäen-Jäger oder Arbitrage-Bots.

FAQ

What does the Float API return?

Float value, paint seed, paint index, sticker positions, wear, and a server-rendered inspect screenshot URL.

Can I query by inspect link?

Yes — pass the inspect URL to /steam/api/float or /float/api/item and you get back the full asset DTO.

How fast are screenshots?

First request renders fresh (~2-5 seconds). Subsequent identical inspect links are cached and return instantly.

Start building with the CS2 Float API

One key, every Steam endpoint.