Skip to main content
GET
List tenant API keys

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Query Parameters

starting_after
string

An opaque cursor from a previous page's next_cursor, issued under the same sort.

limit
string
sort
string

Response

OK

One page of a list, in the envelope every list on this API shares.

Each page carries three keys: items, total and next_cursor. A next_cursor of null means you have reached the last page.

items
object[]
required

The rows on this page, in the requested order.

total
integer<int64>
required

How many rows the collection holds in total.

Page-stable — the count carries no keyset predicate — so a client walking pages sees one number rather than a shrinking one. Whether more pages exist is answered by next_cursor being non-null, not by a flag.

next_cursor
string | null

Where the next page resumes, or null on the last page.

Always emitted, never omitted, for the module's null rule.