v2

latestOpenAPI 3.0.3Apache-2.02026-08-07119359591.9 KB
Experiments

List experiment runs

List runs for a given experiment.

The runs are returned in a stable insertion order.

Human annotations: returned in the structured annotations array on each run. Each entry includes name, optional label / score / text / updated_at, and an annotator (id + email) for per-user annotations.

Pagination:

  • Response includes pagination with has_more and next_cursor.
  • Use cursor-based pagination by passing the returned next_cursor value as the cursor query parameter in subsequent requests.

<Note>This endpoint is in beta, read more here.</Note>

get/v2/experiments/{experiment_id}/runs

Path parameters

experiment_idstring required

A universally unique identifier (base64-encoded opaque string).

Example:RW50aXR5OjEyMzQ1

The unique experiment identifier (base64)

Query parameters

limitinteger

Maximum items to return

cursorstring

Opaque pagination cursor returned from a previous response (pagination.next_cursor). Treat it as an unreadable token; do not attempt to parse or construct it.

Response

Returns a list of experiment run objects

Example response

{
  "experiment_runs": [
    {
      "annotations": [
        {
          "annotator": {
            "email": "user@example.com"
          }
        }
      ]
    }
  ]
}