Current prices

How to Get Skinport Prices for CS2 Skins

Skinport is the largest EUR CS2 marketplace in Europe. CSPriceAPI returns live Skinport listing prices in the same JSON schema as YouPin and CSFloat — ideal for Western cash-out valuation and CN→EU arbitrage.

Endpoint
GET /v1/prices/latest?markets=skinport or GET /v
Currency
EUR
Refresh
~5 min live snapshots
Markets
13 marketplaces in one integration

Quick start

Copy-paste curl example

Authenticate with your Bearer API key. Full reference in the API docs and data coverage.

curl -s "https://api.cspriceapi.com/v1/prices/latest?markets=skinport" \
  -H "Authorization: Bearer YOUR_API_KEY"

Guide

Typical response

{
  "market": "skinport",
  "currency": "EUR",
  "items": [
    {
      "market_hash_name": "M4A1-S | Printstream (Field-Tested)",
      "price": 118.40,
      "count": 86,
      "change_24h": 0.5,
      "change_7d": -1.2,
      "doppler_phase": null
    }
  ]
}
FieldUse
priceLowest Skinport listing (EUR)
countActive listings — require count >= N in bots to ignore thin books
change_*Trend filters for alerts and inventory marks

Guide

Reading Skinport data correctly

EUR ≠ USD. CSFloat and Waxpeer quote USD; Skinport and SkinBaron quote EUR. Convert explicitly — do not compare raw numbers.

Retail Western premium. Skinport often sits above YouPin wholesale after FX. That is normal (convenience, EU payment methods, buyer trust) — not automatically an arb to short Skinport.

Listing ≠ completed sale. Validate thin knives with market sales search:

curl -s "https://api.cspriceapi.com/v1/market-sales/search?market_hash_name=M4A1-S%20%7C%20Printstream%20(Field-Tested)" \
  -H "Authorization: Bearer YOUR_API_KEY"

Skinport official API vs CSPriceAPI. Skinport offers a partner API for sellers. CSPriceAPI aggregates Skinport alongside 12 other markets with one auth header — better for comparison sites and multi-market bots.

Guide

Cross-market: YouPin reference vs Skinport retail

YouPin898 is the volume leader — international price discovery starts there.

curl -s -X POST "https://api.cspriceapi.com/v1/prices/latest" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items":["AK-47 | Redline (Field-Tested)"],"markets":"youpin,skinport,skinbaron,csfloat"}'

Workflow:

  1. Convert YouPin CNY → EUR (your FX feed).
  2. Compare to Skinport EUR ask.
  3. Subtract Skinport seller fee + withdrawal.
  4. If net margin > threshold and count healthy on both sides → flag deal.

Live Deals and Price Comparison automate steps 1–4 in the browser.

Guide

Float and wear tiers

For low-float premiums on Skinport-relevant items, add float buckets:

curl -s "https://api.cspriceapi.com/v2/prices/float-ranged?market=skinport" \
  -H "Authorization: Bearer YOUR_API_KEY"

See Doppler guide when the item is phase-sensitive.

Guide

No-code

Guide

Worked example

AK-47 | Redline (Field-Tested):

MarketPriceFX to EUR
YouPin¥145≈ €18.50
Skinport€22.10

Skinport ~19% above CN reference — typical for liquid play skins. A bot should use historical median spread for this item, not a fixed 5% ROI target.

Guide

History

curl -s "https://api.cspriceapi.com/v1/prices/skinport/history?market_hash_name=AK-47%20%7C%20Redline%20(Field-Tested)" \
  -H "Authorization: Bearer YOUR_API_KEY"

Related

Continue reading

More guides

Related Current prices

Ready to integrate?

Interactive Scalar docs, OpenAPI YAML and machine-readable Markdown mirrors for every endpoint.