Status
GET /v1/health — CSBoard API Liveness and Freshness Probe
Check whether the CSBoard API is reachable and how stale the price list is. The only endpoint that works without an API key — safe to poll unauthenticated.
GET
Liveness + freshness probe
The health endpoint is a lightweight probe that confirms the API is reachable and tells you how stale the materialized price list is. It is the only endpoint that works without an API key, making it safe to poll from monitoring systems or to gate your application startup on a freshness check before making authenticated calls.
Response fields
Always
"ok" when the service is up.Count of priced item groups currently in the price list (one group per unique
market_hash_name + wear + doppler_phase combination).Age of the materialized price list in seconds. Use this as a freshness indicator — a large value means prices may be lagging.
Example request
Example response
Error codes
| HTTP status | Code | Meaning |
|---|---|---|
| 429 | rate_limit_exceeded | Over the request rate limit. Back off and retry after the Retry-After header value. |