MARKETPLACE API
Tradeit
Trusted

Tradeit API

Multi-game listings from Tradeit.gg — CS2, Dota 2, Rust, TF2 — unified with every other marketplace we track.

http://tradeit.gg

Tracked items

14,348

Active listings (24h)

Last update

2026-05-25

19:28 UTC

Refresh cadence

Between scrapes

24h Volume

$4,353,247

Sum price × quantity

Top 10 most expensive items on Tradeit

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
AWP | Dragon Lore (Factory New) AWP | Dragon Lore (Factory New)
$11,206.77
2
AWP | Dragon Lore (Factory New) AWP | Dragon Lore (Factory New)
$11,206.77
3
AWP | Dragon Lore (Field-Tested) AWP | Dragon Lore (Field-Tested)
$6,592.93
4
AWP | Dragon Lore (Field-Tested) AWP | Dragon Lore (Field-Tested)
$6,592.93
5
AK-47 | Hydroponic (Factory New) AK-47 | Hydroponic (Factory New)
$4,711.62
6
AK-47 | Hydroponic (Factory New) AK-47 | Hydroponic (Factory New)
$4,711.62
7
★ Sport Gloves | Pandora's Box (Field-Tested) ★ Sport Gloves | Pandora's Box (Field-Tested)
$3,184.84
8
★ Sport Gloves | Pandora's Box (Field-Tested) ★ Sport Gloves | Pandora's Box (Field-Tested)
$3,184.84
9
AWP | Medusa (Minimal Wear) AWP | Medusa (Minimal Wear)
$2,924.93
10
AWP | Medusa (Minimal Wear) AWP | Medusa (Minimal Wear)
$2,924.93

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

Games supported on Tradeit

Query Tradeit via our API

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

Dedicated Tradeit 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/tradeit/prices

Live prices snapshot

Returns the current Tradeit 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-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
  }
]
  • · 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/tradeit/history

Per-item price history

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

Sample response
[
  {
    "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
  }
]
  • · 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.

Tradeit vs. other marketplaces

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

About Tradeit

Tradeit (Tradeit.gg) is a multi-game marketplace built specifically around trading: users put items in, get a credit, and trade back out at a fixed fee. That model produces a slightly different price curve from pure listing marketplaces, which makes Tradeit data useful as a check against Buff and Skinport pricing.

Our API surfaces Tradeit listings in the same JSON schema as every other marketplace.

Tradeit API — FAQ

What is Tradeit?

Tradeit (Tradeit.gg) is a multi-game trade-focused marketplace covering CS2, Dota 2, Rust and TF2.

Which games does Tradeit support?

Tradeit covers CS2, Dota 2, Rust and TF2 as its main categories. Our API surfaces the full Tradeit inventory.

How do I access Tradeit prices?

Call /steam/api/items with markets=tradeit and your API key.

How fresh are Tradeit prices?

We pull Tradeit on a regular schedule. The 'Last refresh' stat shows the most recent successful pull.

Is Tradeit safe to use?

Tradeit has been operating for several years with a generally positive reputation. Always verify directly before transacting.

Start querying Tradeit in minutes

One key. One schema. Every marketplace.