Skip to main content
GET
/
endpoints
Live catalog of every v2 route
curl --request GET \
  --url https://api.example.com/endpoints \
  --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"
  }
}
Live introspection of every registered route in the API. For each endpoint you get the path, HTTP methods, tag, summary, description, and the full parameter list - including the enum array for any parameter that’s Literal-typed (so you can validate user input client-side against exactly the same values the server accepts). The catalog is derived from the running FastAPI app at request time, not hard-coded. New routes appear here automatically. Use it as a lighter alternative to /v2/openapi.json when you want a flat catalog rather than the full OpenAPI 3 schema.

See also

API metadata

Symbol catalog

Authorizations

X-API-Key
string
header
required

Your BackQuant API key (same key as v1)

Headers

X-API-Key
string | null

Response

Successful Response