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>",
      "datasetId": "<string>",
      "datasetVersionId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "experimentTracesProjectId": "<string>"
    }
  ],
  "pagination": {
    "hasMore": true,
    "nextCursor": "<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

datasetId
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.nextCursor). 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