Apikee

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

ParameterTypeDescription
pageintegerPage number (default: 1)
limitintegerResults per page (max: 100)
methodPathstringFilter by endpoint, e.g. GET:/users
clientIdstringFilter by client UUID
statusstringsuccess or error

Log entry fields

FieldTypeDescription
idstringLog entry ID
clientIdstringClient UUID
endpointIdstringEndpoint ID
statusstringsuccess or error
durationMsintegerValidation latency in milliseconds
timestampdatetimeWhen the request was received
method_pathstringe.g. GET:/users
namestringKey name used for the request

On this page