A free, no-key, read-only JSON API for live CS2 skin prices — the cheapest buyable price for any skin across every marketplace we track, plus per-market quotes. CORS-open, cached ~15 minutes. Build a tool, a Discord bot or a price overlay on top of it.
Cheapest buyable price for a skin and its per-market quotes. The slug is the item slug from any SkinWise item URL (/items/<slug>). Optional ?variant= picks a specific wear / StatTrak / Souvenir; omit it for the most-liquid variant. Reference markets (Buff163, YouPin) are excluded.
curl https://www.skinwise.gg/api/v1/price/ak-47-redline{
"slug": "ak-47-redline",
"name": "AK-47 | Redline",
"weapon": "AK-47",
"rarity": "CLASSIFIED",
"variant": "Field-Tested",
"cheapest": { "price": 12.34, "currency": "USD", "market": "skinport", "marketName": "Skinport" },
"marketCount": 9,
"markets": [
{ "market": "skinport", "name": "Skinport", "price": 12.34 },
{ "market": "dmarket", "name": "DMarket", "price": 12.90 }
],
"url": "https://www.skinwise.gg/items/ak-47-redline",
"updated": "2026-06-14T20:00:00.000Z",
"source": "SkinWise — https://www.skinwise.gg"
}Resolve a text query to skins with their cheapest price and canonical URL. Optional ?limit= (1–50, default 12).
curl "https://www.skinwise.gg/api/v1/search?q=karambit%20doppler&limit=5"{
"query": "karambit doppler",
"results": [
{
"slug": "karambit-doppler",
"name": "★ Karambit | Doppler",
"weapon": "Karambit",
"rarity": "EXTRAORDINARY",
"cheapest": 612.00,
"marketCount": 7,
"url": "https://www.skinwise.gg/items/karambit-doppler"
}
],
"source": "SkinWise — https://www.skinwise.gg"
}