Get the OpenAPI spec
The spec is downloadable from the API reference, andGET /v2/meta advertises its location so tools can discover it
programmatically:
GET /v2/meta is unauthenticated, so you can fetch the spec URL before you wire up
credentials. The generated client still needs your API key at request time — see
Authentication.Generate a client
Point your generator at the spec URL. A few common options:- TypeScript (types only)
- TypeScript (full client)
- Python
openapi-typescript emits
types from the spec — pair it with openapi-fetch for a tiny typed client.Prefer to write it yourself?
A generated client isn’t required — the API is plain HTTP with a bearer token. If you’d rather call it directly, start from the hand-written examples:Python
httpx snippets for auth, pagination, and metrics.TypeScript
fetch-based requests with typed responses.cURL
Copy-paste requests for every common call.