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.

market.csgo.com

Tracked items

25,469

Active listings (24h)

Last update

2026-06-08

10:52 UTC

Refresh cadence

~16 min

Between scrapes

24h Volume

$28,928,382

Sum price × quantity

CSGOcom at a glance

Trust signals, fee structure and supported payment rails — pulled directly from our marketplace registry.

Trust & profile

P2P marketplace

Top 10 most expensive items on CSGOcom

A visual preview of what the price API actually returns — pulled live from our DB.

We always return the lowest price
# Item Lowest price
1
Sticker | esenthial (Holo) | Budapest 2025 Sticker | esenthial (Holo) | Budapest 2025
$531,268.25
2
Sealed Graffiti | Hop (Desert Amber) Sealed Graffiti | Hop (Desert Amber)
$521,382.81
3
Sealed Graffiti | Happy Cat (Cash Green) Sealed Graffiti | Happy Cat (Cash Green)
$512,225.53
4
Sealed Graffiti | Fart (Desert Amber) Sealed Graffiti | Fart (Desert Amber)
$509,374.52
5
Sealed Graffiti | Grimace (Jungle Green) Sealed Graffiti | Grimace (Jungle Green)
$483,922.48
6
Sealed Graffiti | Smooch (SWAT Blue) Sealed Graffiti | Smooch (SWAT Blue)
$453,311.09
7
Sealed Graffiti | Fart (Blood Red) Sealed Graffiti | Fart (Blood Red)
$444,661.25
8
Sealed Graffiti | Smirk (Monster Purple) Sealed Graffiti | Smirk (Monster Purple)
$423,921.64
9
Sealed Graffiti | Thoughtfull (Battle Green) Sealed Graffiti | Thoughtfull (Battle Green)
$422,599.01
10
Sticker Slab | BLAST.tv (Glitter) | Paris 2023 Sticker Slab | BLAST.tv (Glitter) | Paris 2023
$132,817.05

Prices reflect the cheapest active CSGOcom listing per item over the last 24 hours.

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();

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

Live prices snapshot

Returns the current CSGOcom 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-06-08T00:00:00+00:00",
    "variants": null
  },
  {
    "market_hash_name": "Sticker | Slab (Foil) | Krakow 2017",
    "price": 114.65,
    "quantity": 1,
    "createdat": "2026-06-08T00: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/csgocom/history

Per-item price history

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

Sample response
[
  {
    "createdat": "2026-06-01T00:00:00+00:00",
    "price": 124.40,
    "quantity": 1
  },
  {
    "createdat": "2026-06-07T00: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.

CSGOcom vs. other marketplaces

All marketplaces
Marketplace Tracked items
Skinport http://www.skinport.com 36,129
Waxpeer http://waxpeer.com 19,686
Skinbaron http://skinbaron.de 20,596
Dmarket http://www.dmarket.com 18,938
Tradeit http://tradeit.gg 22,740

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.