Discover/CSGOStash API
live

CSGOStash APIcsgostash.com

Fetch live CS2 skin market prices, case contents, weapon catalogs, and collections from CSGOStash via 7 structured endpoints.

Endpoint health
verified 4d ago
get_home
list_weapons
get_skins_by_weapon
list_cases
list_collections
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the CSGOStash API?

The CSGOStash API gives developers access to CS2 skin market data across 7 endpoints, covering weapon skin catalogs, per-wear market prices, case contents, and collection listings. The get_skin_detail endpoint returns pricing objects for every wear condition — Factory New through Battle-Scarred — including median price, number of active listings, and sales volume. Data comes from csgostash.com (stash.clash.gg), one of the most-referenced community price trackers for CS2 items.

Try it

No input parameters required.

api.parse.bot/scraper/9f6b68a6-010a-4541-89cd-60b5f4b77ec2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9f6b68a6-010a-4541-89cd-60b5f4b77ec2/get_home' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace csgostash-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""CS2 Stash: browse weapons, inspect skins, and explore cases."""
from parse_apis.cs2_stash_api import CS2Stash, Weapon_, ItemNotFound

client = CS2Stash()

# Browse featured items on the home page.
for item in client.featureditems.list(limit=3):
    print(item.name, item.url)

# Construct a weapon by name and browse its skins.
ak47 = client.weapon(name=Weapon_.AK_47)
skin = ak47.skins.list(limit=1).first()
if skin:
    print(skin.name, skin.price_range, skin.rarity)

    # Drill into full market detail for that skin.
    try:
        detail = skin.details()
        for p in detail.prices[:3]:
            print(p.quality, p.price, p.median, p.available)
    except ItemNotFound as exc:
        print(f"Skin gone: {exc}")

# Browse cases and inspect one.
case = client.cases.list(limit=1).first()
if case:
    info = case.details()
    print(info.name)
    for s in info.skins[:3]:
        print(s.name, s.rarity)

# List collections available on the site.
for coll in client.collections.list(limit=3):
    print(coll.name, coll.url)

print("exercised: featureditems.list / weapon().skins.list / skin.details / cases.list / case.details / collections.list")
All endpoints · 7 totalmissing one? ·

Fetch featured items and new releases from the home page. Returns a mix of cases and skins currently featured on the site. The selection rotates and reflects what the site promotes at any given time.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of featured item objects with name, url, and image"
  }
}

About the CSGOStash API

Weapon Skins and Market Prices

Start with list_weapons to retrieve the set of weapon names the API supports, then pass any weapon name (e.g. AK-47, AWP, M4A1-S) to get_skins_by_weapon. That endpoint returns an array of skin objects, each carrying a name, id, slug, price_range, image, and rarity string. Feed the id and slug from those results into get_skin_detail to get the full price breakdown. The prices array in that response contains one object per wear condition, with fields for quality, price, listings, median, volume, and available — covering the data points needed to evaluate market liquidity and price spread.

Cases and Collections

list_cases returns all CS2 cases currently tracked on the site, each with a name, id, slug, url, and image. Pass a case's id and slug to get_case_detail to retrieve every skin inside that case along with each skin's rarity tier, id, and slug — making it straightforward to cross-reference case contents with skin prices. list_collections enumerates skin collections with names, URLs, and images where available, drawn from the site's collection navigation.

Home Feed and Discovery

get_home returns the current featured items and new releases from the site's front page as an array of objects with name, url, and image. This endpoint is useful for tracking what items the community is currently highlighting without querying individual weapons or cases. It returns a mixed set of cases and skins, so the type of each item should be inferred from the url field.

Reliability & maintenanceVerified

The CSGOStash API is a managed, monitored endpoint for csgostash.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when csgostash.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official csgostash.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track live per-wear market prices for specific CS2 skins using get_skin_detail price and volume fields
  • Build a case unboxing value calculator by combining get_case_detail skin lists with their get_skin_detail prices
  • Monitor which skins and cases are currently featured on CSGOStash via the get_home endpoint
  • Generate rarity-filtered weapon skin catalogs using the rarity field from get_skins_by_weapon
  • Populate a CS2 inventory tool with full weapon coverage by iterating list_weapons and get_skins_by_weapon
  • Compare median prices across wear conditions for a single skin to identify Factory New vs. Battle-Scarred price gaps
  • Catalog all active CS2 collections and link each to its constituent skins using list_collections and skin slugs
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does CSGOStash have an official developer API?+
No. CSGOStash does not publish a public developer API or documented data feed. This Parse API provides structured access to the data the site exposes publicly.
What price fields does `get_skin_detail` return for each wear condition?+
For each wear condition (e.g. Factory New, Minimal Wear, Field-Tested, Well-Worn, Battle-Scarred), the prices array returns a quality label, a price value, number of active listings, a median price, volume of recent sales, and an available flag. Not all skins exist in every wear tier, so the array length varies by skin.
Does the API return StatTrak or Souvenir skin pricing separately?+
The current get_skin_detail endpoint returns prices for standard wear conditions. StatTrak and Souvenir variants are not broken out as separate price rows in the response. You can fork this API on Parse and revise it to add a dedicated endpoint for StatTrak or Souvenir pricing.
Can I look up skins by collection rather than by weapon?+
list_collections returns collection names and URLs, but there is no endpoint that accepts a collection identifier and returns its skin list directly. The API covers weapon-based skin lookup via get_skins_by_weapon and case contents via get_case_detail. You can fork this API on Parse and revise it to add a collection-detail endpoint that lists skins by collection.
How fresh is the market price data returned by `get_skin_detail`?+
Prices reflect what CSGOStash currently displays, which the site updates periodically from Steam Community Market data. The API does not include a timestamp field in the price response, so the exact age of any given price snapshot is not exposed. For time-sensitive trading use cases, treat prices as approximate market indicators rather than real-time quotes.
Page content last updated . Spec covers 7 endpoints from csgostash.com.
Related APIs in MarketplaceSee all →
csgo.steamanalyst.com API
Track CS2 skin prices in real-time, search for specific skins, and analyze market trends with historical pricing data and top gainers. Compare marketplace listings across different weapons and collections to make informed trading decisions.
pricempire.com API
Search and compare CS2 skin prices across multiple marketplaces. Look up skins by name, retrieve per-condition pricing and historical data, explore order books, and browse marketplace details including fees and payment methods.
csgoroll.com API
Access real-time CS:GO marketplace listings and stats, browse available cases with detailed information, check leaderboards and case battle results, and view the latest game drops and exchange rates. Track pricing data, compare case odds, and monitor top player rankings all from one unified source.
csgoskins.gg API
csgoskins.gg API
skinport.com API
Browse and retrieve CS2 skin listings on Skinport. Search and filter the marketplace by category, exterior, and price; pull full item details and sales history; and access aggregated pricing data across the entire catalog.
csfloat.com API
Monitor the latest CS2 skins posted on the CSFloat marketplace with real-time access to item names and prices. Stay ahead of new listings to find deals or track market trends as soon as items go live.
csgostats.gg API
Track and analyze Counter-Strike 2 player performance with detailed statistics including weapon usage, match history, and head-to-head comparisons. Access global leaderboards, view recent matches, and discover which players you've competed against to benchmark your skills.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.