---
title: "List experiments by dataset"
method: GET
path: "/v1/datasets/{dataset_id}/experiments"
tags: ["experiments"]
---

# List experiments by dataset

`GET /v1/datasets/{dataset_id}/experiments`

Retrieve a paginated list of experiments for the specified dataset.

## Path parameters

- `dataset_id` string, required

## Query parameters

- `cursor` string, nullable — Cursor for pagination (base64-encoded experiment ID)
- `limit` integer — The max number of experiments to return at a time.

## Response `200`

Paginated list of experiments for the dataset

- ListExperimentsResponseBody
  - `data` Experiment[], required
    - `id` string, required — The ID of the experiment
    - `dataset_id` string, required — The ID of the dataset associated with the experiment
    - `dataset_version_id` string, required — The ID of the dataset version associated with the experiment
    - `name` string, required — The name of the experiment
    - `description` string, nullable, required — The description of the experiment
    - `repetitions` integer, required — Number of times the experiment is repeated
    - `metadata` object, required — Metadata of the experiment
    - `project_name` string, nullable, required — The name of the project associated with the experiment
    - `created_at` string, date-time, required — The creation timestamp of the experiment
    - `updated_at` string, date-time, required — The last update timestamp of the experiment
    - `example_count` integer, required — Number of examples in the experiment
    - `successful_run_count` integer, required — Number of successful runs in the experiment
    - `failed_run_count` integer, required — Number of failed runs in the experiment
    - `missing_run_count` integer, required — Number of missing (not yet executed) runs in the experiment
  - `next_cursor` string, nullable, required

## Other responses

- `403` — Forbidden
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/arize-ai/apis/arize-phoenix-rest-api.md) · [All operations](https://skmtc.net/arize-ai/apis/arize-phoenix-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/arize-ai/arize-phoenix-rest-api/versions/5339b2afd3a2/schema)
