Skip to main content
GET
/
symbols
Supported symbols + per-symbol availability
curl --request GET \
  --url https://api.example.com/symbols \
  --header 'X-API-Key: <api-key>'
{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key"
  },
  "meta": {
    "version": "2.0",
    "timestamp": "2026-04-29T12:00:00Z"
  }
}
The first call most integrators make. Returns every symbol the API supports with the categories of data currently live for each, the spot price, the count of active expiries, and the full set of endpoint paths that accept a symbol parameter. Use it to:
  • Discover which symbols are supported (BTCUSDT, ETHUSDT, SOLUSDT, HYPEUSDT)
  • Check at a glance whether a symbol has live cache data before hitting downstream endpoints
  • Build a dynamic UI that lists supported endpoints without hard-coding paths
Powered by a single Redis MGET round-trip - sub-millisecond when warm.

See also

Service status

Data freshness

Authorizations

X-API-Key
string
header
required

Your BackQuant API key (same key as v1)

Headers

X-API-Key
string | null

Response

Successful Response