Gallery Platform API
Reference

List events

Lists the gallery's domain events, newest first, with cursor pagination — the poll/replay backstop for webhooks. Every event a webhook delivers is retrievable here by its `evt_` id, so a receiver that missed a delivery can reconcile. Filter by `type` (e.g. `artwork.created`); walk older pages with `cursor`.

GET
/gallery/events

Lists the gallery's domain events, newest first, with cursor pagination — the poll/replay backstop for webhooks. Every event a webhook delivers is retrievable here by its evt_ id, so a receiver that missed a delivery can reconcile. Filter by type (e.g. artwork.created); walk older pages with cursor.

Authorization

bearerAuth events:read
AuthorizationBearer <token>

A gallery API key, sent as Authorization: Bearer gpk_… (or the x-api-key header).

In: header

Scope: events:read

Query Parameters

limit?integer
Range1 <= value <= 100
Default20
cursor?string
type?string
Lengthlength <= 100
sort?"created"

Sort by one of: created (default created).

Value in

  • "created"
dir?string

Sort direction (default desc).

Value in

  • "asc"
  • "desc"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

{  "data": [    {      "id": "string",      "type": "string",      "livemode": true,      "resource_type": "string",      "resource_id": "string",      "data": {        "property1": null,        "property2": null      },      "created_at": "string"    }  ],  "next_cursor": "string"}