Internal
Core concepts
Errors, pagination, rate limits, idempotency, versioning and scopes.
The rules every endpoint shares. Each page is generated from the contract, so the numbers on it are the ones the API enforces.
ErrorsOne error envelope, eight codes, and the request id to quote when you ask about one.PaginationEvery list is cursor paginated. Follow nextCursor until hasMore is false.Rate limitsA per key allowance, counted in a sliding minute, reported on every response.IdempotencySend an Idempotency-Key on a write and a retry cannot create a second one.VersioningDated versions. A key keeps the contract it was made against until you move it.ScopesWhat each scope unlocks, taken from the operations that require it.
Was this page helpful?