Skip to main content
GET
/
v2
/
experiments
/
{experiment_id}
/
runs
List experiment runs
curl --request GET \
  --url https://api.arize.com/v2/experiments/{experiment_id}/runs \
  --header 'Authorization: Bearer <token>'
{
  "experiment_runs": [
    {
      "id": "run_001",
      "example_id": "ex_001",
      "output": "4",
      "latency_ms": 120,
      "model": "gpt-4"
    },
    {
      "id": "run_002",
      "example_id": "ex_002",
      "output": "4",
      "latency_ms": 150,
      "model": "gpt-4"
    },
    {
      "id": "run_003",
      "example_id": "ex_003",
      "output": "3",
      "latency_ms": 130,
      "model": "gpt-4"
    }
  ],
  "pagination": {
    "next_cursor": "cursor_12345",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format

Path Parameters

experiment_id
string
required

The unique identifier of the experiment A universally unique identifier

Query Parameters

limit
integer
default:50

Maximum items to return

Required range: 1 <= x <= 500

Response

Returns a list of experiment run objects

experiment_runs
object[]
required

Array of experiment run objects containing experiment fields and evaluations

pagination
object
required

Pagination metadata for cursor-based navigation