Gallery Platform API
Reference

List condition reports

Lists the gallery's condition reports (dated artwork examinations), most recent first. Filter by `artwork_id` (an artwork's accumulated history) or `job_task_id` (the report bracketing a custody transfer).

GET
/gallery/condition-reports

Lists the gallery's condition reports (dated artwork examinations), most recent first. Filter by artwork_id (an artwork's accumulated history) or job_task_id (the report bracketing a custody transfer).

Authorization

bearerAuth jobs:read
AuthorizationBearer <token>

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

In: header

Scope: jobs:read

Query Parameters

artwork_id?string

Filter to the given artwork id.

job_task_id?string

Filter to the given job task id.

limit?integer

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

Range1 <= value <= 100
Default50

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",      "job_task_id": "string",      "examined_by": "string",      "examined_at": "string",      "status": "excellent",      "summary": "string",      "notes": "string",      "metadata": {        "property1": "string",        "property2": "string"      },      "created_at": "string",      "updated_at": "string"    }  ]}