Gallery Platform API
Reference

List an offer's recommended recipients

Returns the contacts the recommendation engine would add to this offer: anyone whose stored match on one of the offer's works clears the visible floor, best first, with the works they matched and the strongest evidence item. Contacts already on the offer are omitted. Empty until the engine has judged the offer's works.

GET
/gallery/offers/{id}/recommended-recipients

Returns the contacts the recommendation engine would add to this offer: anyone whose stored match on one of the offer's works clears the visible floor, best first, with the works they matched and the strongest evidence item. Contacts already on the offer are omitted. Empty until the engine has judged the offer's works.

Authorization

bearerAuth offers:read, contacts:read, artworks:read
AuthorizationBearer <token>

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

In: header

Scope: offers:read, contacts:read, artworks:read

Path Parameters

id*string

The offer id.

Query Parameters

limit?integer

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

Range1 <= value <= 50
Default20

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

{  "data": [    {      "contact_id": "string",      "name": "string",      "email": "string",      "probability": 0,      "artworks": [        {          "artwork_id": "string",          "title": "string",          "probability": 0        }      ],      "top_reason": "string"    }  ]}