v1

latestOpenAPI 3.1.02026-07-241642423.7 KB

List logs

Returns a list of API request logs for your organization. Only requests made with an API key are included.

get/logs

Query parameters

pathstring

Return logs whose URL path contains this value (case-insensitive).

methodstring

Return logs with this HTTP method. May be repeated to match multiple methods.

status_codestring

Return logs with this HTTP status code or status class (2xx, 3xx, 4xx, 5xx). May be repeated.

idstring

Return logs with this log ID. May be repeated to match multiple logs.

idempotency_keystring

Return logs with this idempotency key.

created_afterstring date-time

Return logs created on or after this timestamp (ISO 8601).

created_beforestring date-time

Return logs created on or before this timestamp (ISO 8601).

limitinteger

Number of logs returned per page. The maximum value is 100.

cursorstring

Pagination cursor from a next or previous response URL.

Response

200

nextstring nullable
previousstring nullable

Example response

{
  "results": [
    {
      "id": "log_abc123",
      "ip_address": "192.168.1.1",
      "path": "/employees",
      "method": "POST",
      "idempotency_key": "idem-123",
      "status_code": 201,
      "processing_duration": 42,
      "created_at": "2026-04-22T12:00:00+00:00"
    }
  ]
}