Logs
Query and filter request logs on the apikee platform.
Logs
Every validated request in server mode is logged. Logs are queryable by endpoint, client, status, and time range.
Query logs
curl "https://apikee.dev/api/v1/project/my-api-production/logs?limit=50&status=error" \
-H "x-api-key: sk_live_..."Parameters
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number (default: 1) |
limit | integer | Results per page (max: 100) |
methodPath | string | Filter by endpoint, e.g. GET:/users |
clientId | string | Filter by client UUID |
status | string | success or error |
Log entry fields
| Field | Type | Description |
|---|---|---|
id | string | Log entry ID |
clientId | string | Client UUID |
endpointId | string | Endpoint ID |
status | string | success or error |
durationMs | integer | Validation latency in milliseconds |
timestamp | datetime | When the request was received |
method_path | string | e.g. GET:/users |
name | string | Key name used for the request |

