Gallery Platform API
Reference

Get an artist/consignor statement

Returns everything the gallery owes one payee — line detail plus per-currency totals net of the consignor's reimbursable (consignor_100) production costs.

GET
/gallery/payables/statement/{payeeId}

Returns everything the gallery owes one payee — line detail plus per-currency totals net of the consignor's reimbursable (consignor_100) production costs.

Authorization

bearerAuth payables:read
AuthorizationBearer <token>

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

In: header

Scope: payables:read

Path Parameters

payeeId*string

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

{  "payee_contact_id": "string",  "payee_name": "string",  "by_currency": [    {      "currency": "string",      "pending_cents": -9007199254740991,      "paid_cents": -9007199254740991,      "reimbursable_expense_cents": -9007199254740991,      "net_owed_cents": -9007199254740991,      "receivable_cents": -9007199254740991,      "pending_count": -9007199254740991    }  ],  "lines": [    {      "payable_id": "string",      "sale_id": "string",      "artwork_id": "string",      "artwork_title": "string",      "kind": "consignor",      "status": "pending",      "amount_cents": -9007199254740991,      "paid_amount_cents": -9007199254740991,      "paid_at": "string",      "currency": "string"    }  ]}