ArcalotlArcalotl
Webhook Endpoints

List an endpoint's delivery attempts

Returns a keyset page of the endpoint's delivery attempt logs, newest first. Each log carries the event id and type, status, attempt counts, and the last HTTP result.

Serverhttps://api.arcalotl.com
GET
/v1/webhooks/endpoints/{id}/deliveries
AuthorizationBearer <token>

Community-scoped API key. Send it as Authorization: Bearer arclt_live_.... Keys carry scopes; endpoints that need a specific scope answer 403 missing_scope when the key lacks it.

In: header

Path Parameters

id*string

Query Parameters

cursor?string

Opaque keyset cursor copied verbatim from a previous response's next_cursor. Omit it to fetch the first page.

limit?integer

Page size, capped at 100.

Default25
Range1 <= value <= 100

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/webhooks/endpoints/string/deliveries?cursor=eyJpZCI6IjAxSk1aWDQ3In0&limit=25"
{
  "data": [
    {
      "id": "whd_01JMZXC4D5",
      "endpoint_id": "whep_01JMZXB3C4",
      "event_id": "evt_01JMZXA1B2",
      "event_type": "subscription.active",
      "status": "delivered",
      "attempts": 1,
      "max_attempts": 8,
      "next_attempt_at": "2026-07-01T12:01:00Z",
      "last_status_code": 200,
      "last_error": "string",
      "response_snippet": "string",
      "delivered_at": "2026-07-01T12:00:01Z",
      "created_at": "2026-07-01T12:00:00Z",
      "updated_at": "2026-07-01T12:00:01Z"
    }
  ],
  "next_cursor": "eyJpZCI6IndoZF8wMUpNWlhDNCJ9"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}