Gallery Platform API
Reference

List gallery movements

The gallery's recent artwork movements, newest first, with cursor pagination. Each entry carries its artwork's title and inventory number. Defaults to the last 90 days; pass `since` (an ISO date or datetime) to reach further back.

GET
/gallery/movements

The gallery's recent artwork movements, newest first, with cursor pagination. Each entry carries its artwork's title and inventory number. Defaults to the last 90 days; pass since (an ISO date or datetime) to reach further back.

Authorization

bearerAuth artworks:read
AuthorizationBearer <token>

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

In: header

Scope: artworks:read

Query Parameters

limit?integer
Range1 <= value <= 100
Default20
cursor?string
offset?integer
Range0 <= value <= 10000
include_total?boolean
since?|

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",      "artwork_id": "string",      "location": "string",      "reason": "string",      "note": "string",      "moved_by": "string",      "created_at": "string",      "artwork_title": "string",      "inventory_number": "string"    }  ],  "next_cursor": "string",  "total": -9007199254740991}