Billing
List API keys
Retrieve a paginated list of your organization’s API keys
GET
Returns a paginated list of API keys for your organization, sorted newest first.
This endpoint uses the native Lumenfall API path (
/v1/keys), not the OpenAI-compatible prefix (/openai/v1).Query parameters
integer
default:"20"
Number of results to return per page. Minimum 1, maximum 100.
string
Cursor for forward pagination. Returns results after the key with this ID.
Use the
next_page_url from a previous response instead of constructing this manually.string
Cursor for backward pagination. Returns results before the key with this ID.
Cannot be combined with
starting_after.string
Filter keys by status. One of
active or revoked. When omitted, both active and revoked keys are returned.Response
string
Always
list.array
Array of key objects, sorted newest first.
string | null
URL to fetch the next page of results.
null when there are no more results.
Includes all original filters so you can follow it directly.string | null
URL to fetch the previous page of results.
null when on the first page.