Base URL
All requests go to:Authentication
Send your API key in theAuthorization header on every request:
Versions
The version is part of the path. Every endpoint starts with/v1.
Requests and responses
- Every endpoint is a
GETand only reads data. - Responses are JSON with
snake_casefield names. A single record comes back as{ "data": { ... } }, a list as{ "data": [ ... ] }. - Lists that can be long return one page at a time with a
next_cursor. Pass it back ascursorto get the next page;nullmeans you have them all. - Every error has the same shape,
{ "error": { "type", "message" } }. See Errors.