v2

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-07-21130282381.6 KB
API Analytics

Get API log for a request

Get API log for a request

Get API log for a request.

get/environments/{envId}/apis/{apiId}/logs/{requestId}

Response

API log for a particular request

timestampstring date-time

The date (as timestamp) of the log.

apiIdstring

The id of the api.

requestIdstring

The id of the request.

clientIdentifierstring

The client identifier of the request.

transactionIdstring

The id of the transaction.

requestEndedboolean

The flag indicating if the request has ended.

Example response

{
  "timestamp": "2023-05-18 12:40:46.184000+00:00",
  "apiId": "00f8c9e7-78fc-4907-b8c9-e778fc790750",
  "requestId": "1719d8d1-8d01-48f6-99d8-d18d0178f6d4",
  "clientIdentifier": "12ca17b49af2289436f303e0166030a21e525d266e209267433801a8fd4071a0",
  "transactionId": "00f8c9e7-78fc-4907-b8c9-e778fc790750",
  "requestEnded": true,
  "entrypointRequest": {
    "method": "GET",
    "uri": "/my-api",
    "body": "my body"
  },
  "entrypointResponse": {
    "status": 200,
    "body": "my body"
  },
  "endpointRequest": {
    "method": "GET",
    "uri": "/my-api",
    "body": "my body"
  },
  "endpointResponse": {
    "status": 200,
    "body": "my body"
  }
}