Skip to main content
GET
/
v2
/
experiments
List experiments
curl --request GET \
  --url https://api.arize.com/v2/experiments \
  --header 'Authorization: Bearer <token>'
{
  "experiments": [
    {
      "id": "<string>",
      "name": "<string>",
      "dataset_id": "<string>",
      "dataset_version_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "experiment_traces_project_id": "<string>"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>"
  }
}

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

Authorization: Bearer <api-key>

Query Parameters

dataset_id
string

Filter experiments to a particular dataset ID A universally unique identifier

limit
integer
default:50

Maximum items to return

Required range: 1 <= x <= 500
cursor
string

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 objects

experiments
object[]
required

A list of experiments

pagination
object
required

Pagination metadata for cursor-based navigation