beel_list_request_logs
Retrieve the history of your API requests made with any of your keys in this environment, filterable by time, method, HTTP status, path, or errors. Navigate large result sets with cursor pagination.
Instructions
Returns the history of public API requests made by you, with any of your API keys in this
environment — not only the key you are authenticating with. Only auth_type=API_KEY
traffic is recorded.
The axis is the person, not the individual credential: a second key of yours sees the same history, and narrowing it to one key is a filter (
api_key_id), not the default.It is still not the account's traffic: requests made by other users of the same account, or by their API keys, are never returned. The
{account_id}in the path authorizes the call; it does not widen what you can see.Environment is not a filter: results are always scoped to the environment of the credential you authenticate with — a
beel_sk_test_*key sees the test traffic of all your test keys, abeel_sk_live_*key the live traffic of all your live ones. To see the other environment, use a key from that environment.Cursor pagination: navigate with the opaque
cursorreturned innext_cursor/prev_cursor; there is no jump to an arbitrary page N.Time window: defaults to the last 30 days; narrow or move it with
from/to.
Endpoint: GET /v1/accounts/{account_id}/request-logs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Upper bound of the time range (inclusive). Defaults to now. | |
| from | No | Lower bound of the time range (inclusive). Defaults to 30 days ago. | |
| limit | No | ||
| cursor | No | Opaque cursor returned by a previous response (next_cursor / prev_cursor). | |
| method | No | Filter by HTTP method. | |
| account_id | Yes | Account the call is authorized against. It does not widen the result set. | |
| api_key_id | No | Narrow the result to one of your API keys. Any key of yours in this environment is accepted, not just the one you authenticate with; a key belonging to someone else simply yields no results. | |
| http_status | No | Filter by an exact HTTP status code. | |
| only_errors | No | If true, only requests with status >= 400. | |
| path_contains | No | Filter by path substring (case-insensitive). |