Billing
List requests
Retrieve a paginated list of your API requests with optional filtering and cost summary
GET
Returns a paginated list of API requests 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/requests), 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 older than the request with this ID.
Use the
next_page_url from a previous response instead of constructing this manually.Cursor for backward pagination. Returns results newer than the request with this ID.
Cannot be combined with
starting_after.Filter to requests created at or after this time. ISO 8601 datetime (e.g.,
2026-03-01T00:00:00Z).Filter to requests created at or before this time. ISO 8601 datetime (e.g.,
2026-03-31T23:59:59Z).Filter to requests made with a specific API key ID. You can retrieve your key IDs from the List API keys endpoint.
When
true, includes a summary object with the total cost and count of all matching requests (not just the current page).Response
Always
list.Array of request 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.Only present when
summary=true. Aggregates across all matching requests, not just the current page.