Skip to main content
GET
/
v1
/
experiments
/
{experiment_id}
/
incomplete-evaluations
Get incomplete evaluations for an experiment
curl --request GET \
  --url https://api.example.com/v1/experiments/{experiment_id}/incomplete-evaluations
{
  "data": [
    {
      "experiment_run": {
        "dataset_example_id": "<string>",
        "output": "<unknown>",
        "repetition_number": 123,
        "start_time": "2023-11-07T05:31:56Z",
        "end_time": "2023-11-07T05:31:56Z",
        "id": "<string>",
        "experiment_id": "<string>",
        "trace_id": "<string>",
        "error": "<string>"
      },
      "dataset_example": {
        "id": "<string>",
        "node_id": "<string>",
        "input": {},
        "output": {},
        "metadata": {},
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "evaluation_names": [
        "<string>"
      ]
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

experiment_id
string
required

Query Parameters

evaluation_name
string[]

Evaluation names to check

cursor
string | null

Cursor for pagination

limit
integer
default:50

Maximum number of runs with incomplete evaluations to return

Response

Incomplete evaluations retrieved successfully

data
IncompleteExperimentEvaluation · object[]
required
next_cursor
string | null
required