MARKETPLACE API
CSGOcom
P2P

CSGOcom API

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

http://market.csgo.com

Erfasste Items

25,242

Aktive Listings (24h)

Letzte Aktualisierung

2026-05-25

19:36 UTC

Refresh-Takt

Zwischen Scrapes

24h Volumen

$23,437,002

Summe Preis × Menge

Die 10 teuersten Items auf CSGOcom

Visuelle Vorschau auf das, was die Price-API tatsächlich liefert – live aus unserer DB.

Wir liefern immer den niedrigsten Preis
# Item Niedrigster Preis
1
Sealed Graffiti | Smirk (Brick Red) Sealed Graffiti | Smirk (Brick Red)
$467,077.15
2
Sealed Graffiti | Thoughtfull (Battle Green) Sealed Graffiti | Thoughtfull (Battle Green)
$413,509.16
3
Sticker Slab | bLitz | Copenhagen 2024 Sticker Slab | bLitz | Copenhagen 2024
$129,800.00
4
Sticker Slab | aliStair | Antwerp 2022 Sticker Slab | aliStair | Antwerp 2022
$127,600.00
5
Sticker Slab | The MongolZ | Paris 2023 Sticker Slab | The MongolZ | Paris 2023
$116,900.00
6
Sticker Slab | kyxsan | Paris 2023 Sticker Slab | kyxsan | Paris 2023
$116,400.00
7
Sticker Slab | FaNg | Paris 2023 Sticker Slab | FaNg | Paris 2023
$45,800.00
8
★ Sport Gloves | Hedge Maze (Factory New) ★ Sport Gloves | Hedge Maze (Factory New)
$33,185.19
9
Sticker | Vox Eminor (Holo) | Katowice 2014 Sticker | Vox Eminor (Holo) | Katowice 2014
$29,640.00
10
Sealed Graffiti | Thoughtfull (Dust Brown) Sealed Graffiti | Thoughtfull (Dust Brown)
$25,246.00

Preise spiegeln das günstigste aktive CSGOcom-Listing pro Item innerhalb der letzten 24 Stunden.

Games supported on CSGOcom

Query CSGOcom via our API

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

Dedizierte CSGOcom-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/csgocom/prices

Live-Preise-Snapshot

Liefert den aktuellen CSGOcom-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-25T00:00:00+00:00",
    "variants": null
  },
  {
    "market_hash_name": "Sticker | Slab (Foil) | Krakow 2017",
    "price": 114.65,
    "quantity": 1,
    "createdat": "2026-05-25T00: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/csgocom/history

Preis-History pro Item

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

Beispiel-Antwort
[
  {
    "createdat": "2026-05-18T00:00:00+00:00",
    "price": 124.40,
    "quantity": 1
  },
  {
    "createdat": "2026-05-24T00: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.

CSGOcom vs. other marketplaces

All marketplaces
Marketplace Tracked items
Waxpeer http://waxpeer.com
Skinbaron http://skinbaron.de
Bitskins http://www.bitskins.com
HaloSkins http://www.haloskins.io
Dmarket http://www.dmarket.com

About CSGOcom

CSGOcom 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 CSGOcom items, you can hit the unified /steam/api/items endpoint with markets=csgocom 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.

CSGOcom API — FAQ

What is CSGOcom?

CSGOcom 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 CSGOcom support via the API?

Through our API we currently surface 1 game for CSGOcom. Each links out to its own /{game}-api landing page.

How do I access CSGOcom prices?

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

How fresh are CSGOcom 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 CSGOcom.

Is CSGOcom safe to use?

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

Start querying CSGOcom in minutes

One key. One schema. Every marketplace.