MARKETPLACE API
49Skins
P2P

49Skins API

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

49skins.com

Operational proof

The leading Steam data platform for production applications.

Established in 2018 and trusted by developers, marketplaces and trading platforms.

10,115 registered developer accounts
8 supported games
166,524 marketable items
14 active marketplaces
47,139,725 active listings
2018 operating since
Used across the Steam ecosystem Skinpull Esportfire Eliteskins RentSkins Botchicken

Tracked items

192

Active listings (24h)

Last update

2026-09-11

21:40 UTC

Refresh cadence

~5 min

Between scrapes

24h Volume

$47,925

Sum price × quantity

49Skins 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 49Skins

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
AK-47 | Hydroponic (Factory New) AK-47 | Hydroponic (Factory New)
$20,958.39
2
AWP | Dragon Lore (Field-Tested) AWP | Dragon Lore (Field-Tested)
$7,488.95
3
★ Sport Gloves | Ultra Violent (Minimal Wear) ★ Sport Gloves | Ultra Violent (Minimal Wear)
$3,992.07
4
★ Karambit | Gamma Doppler (Minimal Wear) ★ Karambit | Gamma Doppler (Minimal Wear)
$1,696.63
5
★ Sport Gloves | Vice (Minimal Wear) ★ Sport Gloves | Vice (Minimal Wear)
$1,347.32
6
★ StatTrak™ Bayonet | Doppler (Factory New) ★ StatTrak™ Bayonet | Doppler (Factory New)
$1,147.72
7
★ M9 Bayonet | Lore (Factory New) ★ M9 Bayonet | Lore (Factory New)
$1,147.72
8
AWP | Graphite (Factory New) AWP | Graphite (Factory New)
$798.41
9
StatTrak™ AK-47 | The Empress (Factory New) StatTrak™ AK-47 | The Empress (Factory New)
$627.91
10
★ Skeleton Knife | Doppler (Factory New) ★ Skeleton Knife | Doppler (Factory New)
$588.83

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

Games supported on 49Skins

Query 49Skins via our API

Filter the unified /steam/api/items endpoint with markets=49skins to return only 49Skins 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.
49Skins API Request
# curl with API key
curl -H "X-Api-Key: $KEY" "https://www.steamwebapi.com/steam/api/items?markets=49skins&game=cs2"
# PHP
$client = \Symfony\Component\HttpClient\HttpClient::create();
$res = $client->request('GET', 'https://www.steamwebapi.com/steam/api/items?markets=49skins&game=cs2', ['headers' => ['X-Api-Key' => $KEY]]);
$items = $res->toArray();
# Node.js / JavaScript
const r = await fetch(`https://www.steamwebapi.com/steam/api/items?markets=49skins&game=cs2`, { headers: { 'X-Api-Key': KEY } });
const items = await r.json();

Dedicated 49Skins 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/49skins/prices

Live prices snapshot

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

Per-item price history

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

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

49Skins vs. other marketplaces

All marketplaces
Marketplace Tracked items
skin.land https://app.skin.land 35,976
Youpin https://youpin898.com 31,881
CSFloat https://csfloat.com 27,703
Skinflow https://skinflow.gg 22,468
LIS-SKINS https://lis-skins.com 35,973

About 49Skins

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

49Skins API — FAQ

What is 49Skins?

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

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

How do I access 49Skins prices?

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

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

Is 49Skins safe to use?

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

Start querying 49Skins in minutes

One key. One schema. Every marketplace.

Direct support

Cannot find the right endpoint, data source or plan?

Tell the Steamwebapi team what you are building. A short sentence is enough — we will help you identify the right product and the simplest way to integrate it.

S
Steamwebapi team Product and integration support
Hi — what are you building, and what could you not find? Send us the question exactly as you have it.
Opens our existing live support chat.