List Api Logs
Lists the requests served by Whop's API with the account's API keys, newest first — every surface (GraphQL, REST, and native /api/v1), reads and failed requests included.
Query parameters
The account (biz_*) whose API logs to list. Defaults to the authenticated account.
Only return requests served at or after this ISO 8601 timestamp. Defaults to 7 days before created_before, or 7 days ago.
Only return requests served before this ISO 8601 timestamp.
Only return requests for this operation, matched exactly against the operation_name shown on each log row (for example api/v1/products#create).
Only return requests made with this HTTP method.
Only return requests that finished with this status.
Only return requests made with this API key (apik_…).
Only return requests that took at least this many milliseconds.
Only return requests that took at most this many milliseconds.
Number of logs to return.
Cursor to fetch the page after (from page_info.end_cursor).
Response
api logs listed
Example response
{
"data": [
{
"api_key_id": "apik_xxxxxxxxxxxxxx",
"created_at": "2026-01-01T12:00:00.000Z",
"duration_ms": 12,
"http_method": "POST",
"http_path": "/api/v1/products",
"id": "evt_xxxxxxxxxxxxxx_1",
"ip_address": "87.106.27.99",
"operation_name": "api/v1/products#create",
"status": "success",
"status_code": 200,
"user_agent": "node"
}
]
}