Events
List recent events
Authorization
ApiKey AuthorizationBearer <token>
Bearer API key in the form sk_live_…, sk_test_…, or pk_live_…. Keys are issued from the Consistly dashboard and carry product-prefixed scopes.
In: header
Query Parameters
type?string
Filter by event type, e.g. brand.check.completed.
limit?string
Page size (1–200, default 50).
Response Body
application/json
curl -X GET "https://example.com/events"{ "object": "list", "data": [ { "id": "string", "object": "event", "type": "string", "api_version": "string", "livemode": true, "request_id": "string", "data": { "property1": null, "property2": null }, "created": "2019-08-24T14:15:22Z", "organization": "string" } ], "has_more": true, "url": "string"}List deliveries for a webhook endpoint GET
Returns every delivery attempt against this endpoint, oldest first. Status moves from `pending` → `delivered` on a 2xx response, retries on non-2xx with exponential backoff (1m, 5m, 30m, 2h, 6h), and lands in `failed` after 5 attempts. Endpoints that get disabled before delivery move the rows to `abandoned`.
Retrieve an event GET
Next Page