Skip to main content
GET
minAsk price list
The prices endpoint returns a grouped price snapshot of the CSBoard marketplace. Each row represents a unique combination of market_hash_name, wear, and doppler_phase, and carries the cheapest current asking price together with how many copies are listed. This makes it efficient for building price comparison tables, alerting pipelines, or portfolio valuation — you can retrieve pricing for thousands of items without pulling individual listings. Authentication required. Send your key as Authorization: Bearer csb_pub_....

Query parameters

Fuzzy match on market_hash_name — splits the query into words and substring-matches each. A name that is a word-subset of a longer item’s name (e.g. Spectrum Case vs Spectrum 2 Case) cannot be isolated this way; use name for an exact lookup.
string
Exact market_hash_name (case-insensitive) — the precise single-item lookup. name=Spectrum Case returns only the Spectrum Case group, never Spectrum 2 Case. Takes precedence over search.
string
Filter by item category, e.g. Rifle, Knife, Gloves.
string
Filter by wear bucket. One of: Factory New, Minimal Wear, Field-Tested, Well-Worn, Battle-Scarred.
string
Filter by rarity tier, e.g. Classified, Covert.
number
Minimum min_price_usd in USD (inclusive).
number
Maximum min_price_usd in USD (inclusive).
string
Keyset pagination cursor. Pass the next_cursor value from the previous response.
integer
default:"100"
Number of rows per page. Minimum 1, maximum 500.

Response fields

PriceRow[]
required
Array of price rows for this page.
string | null
required
Keyset cursor for the next page. Pass as cursor on the next request. null on the last page.

Example request

Example response

Error codes

The prices endpoint returns an indicative grouped snapshot. The data is periodically materialized and can lag behind the live marketplace. Use GET /v1/listings for the authoritative, real-time asking price of a specific item before placing an order.

Authorizations

Authorization
string
header
required

Send your key as a Bearer token on every request: Authorization: Bearer csb_pub_.... Generate keys in your CSBoard profile.

Query Parameters

Full-text match on market hash name.

name
string

Exact market_hash_name (case-insensitive) — the precise single-item lookup. Unlike fuzzy search, it isolates one item even when its name is a word-subset of a longer one (e.g. Spectrum Case vs Spectrum 2 Case). Takes precedence over search.

category
string

e.g. Rifle, Knife, Gloves.

wear
enum<string>

Item wear bucket.

Available options:
Factory New,
Minimal Wear,
Field-Tested,
Well-Worn,
Battle-Scarred
rarity
string

e.g. Classified, Covert.

min_price
number

Minimum price in USD.

max_price
number

Maximum price in USD.

cursor
string

Keyset cursor from next_cursor.

limit
integer
default:100

1–500. Default 100.

Required range: 1 <= x <= 500

Response

A page of price rows.

items
object[]
required
next_cursor
string | null
required