Gallery Platform API
Reference

List artwork documents

Lists an artwork's internal documents (COA, condition report, invoice, provenance). A first-party session gets a short-lived signed download URL for each; an API-key principal gets the rows but no download link (`url` is null).

GET
/gallery/artworks/{id}/documents

Lists an artwork's internal documents (COA, condition report, invoice, provenance). A first-party session gets a short-lived signed download URL for each; an API-key principal gets the rows but no download link (url is null).

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

Path Parameters

id*string

The artwork id.

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",      "storage_path": "string",      "url": "string",      "kind": "coa",      "title": "string",      "file_name": "string",      "content_type": "string",      "byte_size": -9007199254740991,      "visible_in_room": true,      "position": -9007199254740991,      "created_at": "string",      "updated_at": "string"    }  ]}