MARKETPLACE API
Skinflow

Skinflow API

Real-time prices, listings and trade volume from Skinflow, unified with 20+ other marketplaces through a single REST endpoint.

http://skinflow.gg

Erfasste Items

Aktive Listings (24h)

Letzte Aktualisierung

Refresh-Takt

Zwischen Scrapes

24h Volumen

Summe Preis × Menge

Query Skinflow via our API

Filter the unified /steam/api/items endpoint with markets=skinflow to return only Skinflow 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.
Skinflow API Request
# curl with API key
curl "https://www.steamwebapi.com/steam/api/items?key=$KEY&markets=skinflow&game=cs2"
# PHP
$res = file_get_contents('https://www.steamwebapi.com/steam/api/items?key=' . $KEY . '&markets=skinflow');
$items = json_decode($res, true);
# Node.js / JavaScript
const r = await fetch(`https://www.steamwebapi.com/steam/api/items?key=${KEY}&markets=skinflow`);
const items = await r.json();

Dedizierte Skinflow-Endpoints

Zusätzlich zur einheitlichen /steam/api/items-Route bekommt jeder Markt zwei Komfort-Endpoints – ein Schema, ein Auth-Header, alle Marktplätze.

GET /market/skinflow/prices

Live-Preise-Snapshot

Liefert den aktuellen Skinflow-Katalog als flaches Array. Jede Zeile ist ein Item mit dem niedrigsten aktiven Preis, den wir kennen.

Beispiel-Antwort
[
  {
    "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
  }
]
  • · Gleiches JSON-Schema bei jedem Marktplatz im Katalog.
  • · Wir liefern den niedrigsten Preis pro Item – nie einen Durchschnitt, nie einen alten Tick.
  • · Optional Filter via market_hash_name oder Währungskonvertierung via ?currency=EUR.
GET /market/skinflow/history

Preis-History pro Item

Tages-Snapshot-History des niedrigsten Skinflow-Preises für ein bestimmtes Item – ideal für Charts und Portfolio-Tracker.

Beispiel-Antwort
[
  {
    "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
  }
]
  • · Eine Zeile pro Tag, immer der niedrigste Preis dieses Tages.
  • · Begrenzbar via start_date und end_date (YYYY-MM-DD).
  • · market_hash_name ist Pflicht – History ist pro Item, nicht pro Markt.

Lieber ein Call über alle Marktplätze? Nutze den einheitlichen /steam/api/items-Endpoint mit markets=… – gleiches DTO, Vergleichsdaten inklusive.

Skinflow vs. other marketplaces

All marketplaces
Marketplace Tracked items
Waxpeer http://waxpeer.com 20,395
Skinbaron http://skinbaron.de 20,042
Bitskins http://www.bitskins.com 16,839
CSGOcom http://market.csgo.com 24,820
HaloSkins http://www.haloskins.io

About Skinflow

Skinflow is one of the third-party marketplaces aggregated by the Steamwebapi pricing layer. Listings are scraped on a fixed schedule, normalised into a single schema, and merged with the data we collect from Steam, other community markets, and direct exchange integrations.

If you build a portfolio tracker, an arbitrage bot, or simply need a reliable price reference for Skinflow items, you can hit the unified /steam/api/items endpoint with markets=skinflow instead of building one scraper per source.

For the complete list of supported marketplaces, refresh cadence, and an interactive playground, see our Price API hub.

Skinflow API — FAQ

What is Skinflow?

Skinflow is a third-party marketplace for game items. Steamwebapi tracks its listings and exposes them through a single REST API, normalised alongside the other marketplaces in our network.

Which games does Skinflow support via the API?

Coverage depends on which scrapers we have active for Skinflow. Check the "Supported games" section above for the current list.

How do I access Skinflow prices?

Get an API key from the dashboard and call /steam/api/items with `markets=skinflow`. The response uses the same DTO across every market we cover.

How fresh are Skinflow prices?

Each marketplace has its own scrape cadence, balancing freshness against rate-limit budget. The "Last refresh" stat above shows the most recent successful scrape for Skinflow.

Is Skinflow safe to use?

We surface Skinflow for data purposes — trust signals are not derived from our review, so please verify the marketplace directly before transacting on it.

Start querying Skinflow in minutes

One key. One schema. Every marketplace.