Gallery Platform API
Reference

List shows

Lists the gallery's shows — exhibitions and art fairs — newest first, with cursor pagination. Filter by show_type, visibility, or a title query.

GET
/gallery/shows

Lists the gallery's shows — exhibitions and art fairs — newest first, with cursor pagination. Filter by show_type, visibility, or a title query.

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

Page size. Defaults to 20; the maximum is 100.

Range1 <= value <= 100
Default20
cursor?string

Opaque cursor from the previous page's next_cursor. Omit for the first page.

show_type?string

Filter to the given show type.

Value in

  • "exhibition"
  • "art_fair"
visibility?string

Filter to the given visibility.

Value in

  • "public"
  • "unlisted"
  • "private"
q?string

Free-text search over the resource's searchable fields.

Length1 <= length <= 200
tag_id?array<string>

Filter to the given tag id.

Items1 <= items <= 10

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",      "show_type": "exhibition",      "title": "string",      "subtitle": "string",      "summary": "string",      "press_release": "string",      "press_embargo_until": "string",      "start_date": "string",      "end_date": "string",      "location_id": "string",      "venue_name": "string",      "art_fair_id": "string",      "booth": "string",      "checklist_list_id": "string",      "cover_image_path": "string",      "cover_url": "string",      "visibility": "public",      "is_cancelled": true,      "metadata": {        "property1": "string",        "property2": "string"      },      "created_at": "string",      "updated_at": "string",      "save_state": "new"    }  ],  "next_cursor": "string"}