MARKETPLACE API
Bitskins

BitSkins API

Listings from BitSkins — one of the longest-running Western skin marketplaces — unified with every other market we track.

http://www.bitskins.com

Tracked items

16,832

Active listings (24h)

Last update

2026-05-25

18:01 UTC

Refresh cadence

Between scrapes

24h Volume

$5,097,587

Sum price × quantity

Top 10 most expensive items on Bitskins

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
Souvenir Nova | Walnut (Factory New) Souvenir Nova | Walnut (Factory New)
$192,188.36
2
Sticker | ESL One Cologne 2014 (Blue) Sticker | ESL One Cologne 2014 (Blue)
$191,981.00
3
Sticker | Clan-Mystik (Holo) | Katowice 2014 Sticker | Clan-Mystik (Holo) | Katowice 2014
$133,061.79
4
Sealed Graffiti | Cocky (Battle Green) Sealed Graffiti | Cocky (Battle Green)
$99,999.99
5
★ Navaja Knife | Damascus Steel (Well-Worn) ★ Navaja Knife | Damascus Steel (Well-Worn)
$89,099.98
6
M4A4 | Global Offensive (Factory New) M4A4 | Global Offensive (Factory New)
$70,000.00
7
Desert Eagle | Urban DDPAT (Factory New) Desert Eagle | Urban DDPAT (Factory New)
$70,000.00
8
CZ75-Auto | Syndicate (Minimal Wear) CZ75-Auto | Syndicate (Minimal Wear)
$69,300.00
9
EMS Katowice 2014 Challengers EMS Katowice 2014 Challengers
$29,500.00
10
AWP | Lightning Strike (Factory New) AWP | Lightning Strike (Factory New)
$11,000.00

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

Games supported on Bitskins

Query Bitskins via our API

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

Dedicated Bitskins 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/bitskins/prices

Live prices snapshot

Returns the current Bitskins 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/bitskins/history

Per-item price history

Daily-snapshot history of the lowest Bitskins 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.

Bitskins vs. other marketplaces

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

About Bitskins

BitSkins is one of the longest-running Western skin marketplaces, operating since 2015. It covers multiple Steam games and has built a stable reputation through a decade of uptime. Pricing on BitSkins is a useful reference point because it reflects a long-established Western mid-tier user base.

Our API normalises BitSkins listings into the same JSON schema as Buff, Skinport, CSFloat and the rest — one key, one integration, every market.

Bitskins API — FAQ

What is BitSkins?

BitSkins is a veteran skin marketplace, operating since 2015. It covers CS2 and several other Steam community games.

Which games does BitSkins support?

BitSkins covers CS2 as its main category, with smaller catalogues for other Steam community games. Our API surfaces the full BitSkins inventory.

How do I access BitSkins prices?

Call /steam/api/items with markets=bitskins. BitSkins listings come back in the unified DTO.

How fresh are BitSkins prices?

We scrape BitSkins regularly. The 'Last refresh' stat shows the most recent successful pull.

Is BitSkins safe to use?

BitSkins has a decade of uptime and a generally positive long-term reputation. Verify directly before transacting.

Start querying Bitskins in minutes

One key. One schema. Every marketplace.