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.Documentation Index
Fetch the complete documentation index at: https://docs.lumenfall.ai/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint uses the native Lumenfall API path (
/v1/keys), not the OpenAI-compatible prefix (/openai/v1).Query parameters
Number of results to return per page. Minimum 1, maximum 100.
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.Cursor for backward pagination. Returns results before the key with this ID.
Cannot be combined with
starting_after.Filter keys by status. One of
active or revoked. When omitted, both active and revoked keys are returned.Response
Always
list.Array of key objects, sorted newest first.
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.URL to fetch the previous page of results.
null when on the first page.