list labels
list_labelsRetrieve human pass/fail grades on logged requests, newest first, to audit or export the ground-truth verdicts judges are evaluated against.
Instructions
List the workspace's human pass/fail grades (ground-truth labels) on logged requests, newest first — use it to audit or export the verdicts every judge is measured against. GET /v1/labels (API-key scope: read). Returns: JSON { object: 'list', total: integer (matching rows across all pages), data: [ { id, request_id, verdict ('pass'|'fail'), critique: string|null, source ('human'|'assist_accepted'|'verifier'), scope ('request'|'trace'), created_at (ISO) } ] }. Notes: Offset pagination: page through with offset += limit until offset >= total. Rows include labels of every source (human, assist_accepted, verifier).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size. Default 50, clamped 1..200. Non-numeric or 0 falls back to the default. Default: 50. | |
| offset | No | Rows to skip (offset pagination). Default 0. Default: 0. | |
| verdict | No | Filter to one verdict. Any other value is ignored (no filter). |