ConsistlyAPI
Events

List recent events

GET
/events
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"}