Gallery Platform API
Reference

List programs

Lists the gallery's programs — openings, talks, walkthroughs — most recent first, with cursor pagination. Filter by event_type or a parent show.

GET
/gallery/programs

Lists the gallery's programs — openings, talks, walkthroughs — most recent first, with cursor pagination. Filter by event_type or a parent show.

Authorization

bearerAuth shows:read
AuthorizationBearer <token>

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

In: header

Scope: shows:read

Query Parameters

limit?integer
Range1 <= value <= 100
Default20
cursor?string
event_type?string

Value in

  • "opening"
  • "talk"
  • "walkthrough"
  • "performance"
  • "screening"
  • "other"
show_id?string
q?string
Length1 <= length <= 200

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",      "slug": "string",      "event_type": "opening",      "title": "string",      "description": "string",      "show_id": "string",      "starts_at": "string",      "ends_at": "string",      "location_id": "string",      "venue_name": "string",      "external_url": "string",      "visibility": "public",      "capacity": -9007199254740991,      "created_at": "string",      "updated_at": "string"    }  ],  "next_cursor": "string"}