MARKETPLACE API
Skinport
Trusted

Skinport API

Reaaliaikaiset hinnat ja listaukset Skinportista — EU-säännelty, kuluttajansuoja — yhdistettynä jokaiseen muuhun markkinapaikkaan.

www.skinport.com

Tracked items

Active listings (24h)

Last update

Refresh cadence

Between scrapes

24h Volume

Sum price × quantity

Skinport at a glance

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

Trust & profile

4.9 / 10

Trust score · based on 33,900 reviews

Trusted partner Direct market

Fee structure

Sale fee

  • 0–100 15%
  • 100–200 12%
  • 200–10,000 5%

Buy fee

  • 0+ 5%

Payout fee

  • 0+ 5%

Ranges are listed in the marketplace's base currency. Percentages reflect the marketplace's published rate for the corresponding bucket — verify against the live marketplace for the latest pricing.

Games supported on Skinport

Query Skinport via our API

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

Dedicated Skinport 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/skinport/prices

Live prices snapshot

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

Per-item price history

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

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

Skinport vs. other marketplaces

All marketplaces
Marketplace Tracked items
Waxpeer http://waxpeer.com 22,467
Skinbaron http://skinbaron.de
CSGOcom http://market.csgo.com 27,276
HaloSkins http://www.haloskins.com 29,058
Dmarket http://www.dmarket.com 20,039

About Skinport

Skinport on Berliinissä sijaitseva CS2- ja Rust-markkinapaikka, täysin GDPR-yhteensopiva ja yksi harvoista skinimarkkinapaikoista, joka toimii eurooppalaisen kuluttajansuojalain alaisuudessa. Laajalti tunnustettu EU:n pelaajayhteisössä, sen hintataso asettuu aggressiivisten kiinalaisten markkinapaikkojen ja premium-länsimarkkinapaikkojen väliin — arvokas mille tahansa inventaarion arvonmääritykselle.

Skinport API — FAQ

Mikä on Skinport?

Skinport on Berliinissä sijaitseva CS2- ja Rust-markkinapaikka, säännelty eurooppalaisen kuluttajansuojalain alaisuudessa. Toiminut vuodesta 2018 ja laajalti käytetty eurooppalaisessa kaupankäyntiyhteisössä.

Which games does Skinport support?

Skinport's main categories are CS2 and Rust, with smaller coverage for other Steam games. Our API surfaces the full Skinport catalogue.

Miten pääsen Skinport-hintoihin?

Kutsu /steam/api/items parametrilla markets=skinport ja API-avaimellasi. Skinport-listaukset tulevat samassa JSON-skeemassa kuin kaikki muut markkinat.

How fresh are Skinport prices?

We scrape Skinport on a regular cadence. The 'Last refresh' stat shows the most recent successful pull.

Onko Skinport turvallinen?

Skinport on EU:n kuluttajansuojasääntöjen alainen ja sitä pidetään yhtenä turvallisimmista länsimaisista markkinapaikoista. Varmista aina suoraan ennen kaupankäyntiä — esitämme Skinportin datatarkoituksiin.

Start querying Skinport in minutes

One key. One schema. Every marketplace.