Every BackQuant API request requires an API key passed in theDocumentation Index
Fetch the complete documentation index at: https://docs.backquant.com/llms.txt
Use this file to discover all available pages before exploring further.
X-API-Key
header. Keys are tied to your subscription tier and control your
rate limits.
Get an API key
Get your API key
Sign up or sign in at backquant.com/api-access to create and manage
your keys.
Pass your API key
Include your key in theX-API-Key header on every request.
Endpoints that don’t require auth
A small set of endpoints are intentionally public so you can introspect the API before signing up:| Endpoint | Purpose |
|---|---|
/v2/openapi.json | Full machine-readable OpenAPI 3 spec |
/v2/docs | Swagger UI — interactive playground |
/v2/redoc | ReDoc — alternative reference renderer |
/v2/health | Liveness/readiness probe for monitors |
X-API-Key.
Authentication errors
A missing or invalid API key returns a401 response with the
UNAUTHORIZED error code:
- The
X-API-Keyheader is missing from the request. - The key value has a leading/trailing space (common when copy-pasting).
- The key was revoked at backquant.com/api-access.
- Your subscription lapsed (
FORBIDDENrather thanUNAUTHORIZEDin this case).
request_id field in the meta block is the value of the
X-Request-ID header — include it when reporting auth issues so we can
trace the specific call in our logs.
Next steps
Quick start
Make your first API call.
Code examples
Python, TypeScript, and curl recipes.
Rate limits
Per-tier limits and backoff strategy.
Errors
Every error code with handling examples.
