Gallery Platform API
Reference

List artist invitations

Lists the gallery's artist studio-claim invitations, newest first, with cursor pagination. Filter with ?status=pending or ?artist_id=artist_….

GET
/gallery/artist-invitations

Lists the gallery's artist studio-claim invitations, newest first, with cursor pagination. Filter with ?status=pending or ?artist_id=artist_….

Authorization

bearerAuth artists:read
AuthorizationBearer <token>

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

In: header

Scope: artists:read

Query Parameters

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

Value in

  • "pending"
  • "accepted"
  • "revoked"
artist_id?string

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",      "artist_id": "string",      "email": "string",      "status": "pending",      "share_profile": true,      "expires_at": "string",      "created_at": "string"    }  ],  "next_cursor": "string"}