Skip to main content
GET
/
api
/
v1
/
endpoints
/
{endpoint_id}
/
executions
List Endpoint Executions
curl --request GET \
  --url https://api.example.com/api/v1/endpoints/{endpoint_id}/executions
{
  "items": [
    {
      "id": "<string>",
      "endpoint_id": "<string>",
      "status": "<string>",
      "http_status": 123,
      "duration_ms": 123,
      "request_data": {},
      "response_body": {},
      "error_message": "<string>",
      "executed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Path Parameters

endpoint_id
string
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Response

Successful Response

Paginated list of endpoint executions.

items
EndpointExecutionResponse · object[]
required
total
integer
required