---
title: "List dataset examples"
method: GET
path: "/api/v1/automations/{id}/examples"
tags: ["Evaluation"]
---

# List dataset examples

`GET /api/v1/automations/{id}/examples`

List dataset examples for one automation. Examples contain input, expected output, expected files, metadata, and optional overrides used by evaluation runs.

## Path parameters

- `id` string, required — Automation id or typed alias, such as `workflows.slug` or `agents.slug`.

## Query parameters

- `limit` integer — Maximum number of examples to return.
- `offset` integer — Zero-based offset for paging through examples.

## Response `200`

Page of dataset examples.

- DatasetExampleList
  - `data` DatasetExample[], required
    - `id` string, required — Stable public example id. Workflow examples use DB ids; agent examples use deterministic name-derived ids.
    - `name` string, required — Human-readable dataset example name.
    - `automationId` string, required — Automation that owns this example.
    - `automationType` 'workflow' | 'agent', required
    - `input` object, nullable, required — Input arguments used when this example is run.
    - `expected` unknown, required
    - `expectedFiles` object[], required — Expected files attached to this example.
      - `name` string, required — Expected file name.
      - `url` string — Download URL for the expected file.
    - `metadata` object, nullable, required — Caller-managed metadata for sorting or filtering examples.
    - `annotation` string, nullable, required — Human note about the example.
    - `rowOrder` number, nullable, required — Optional display order within the dataset.
    - `overrides` object, nullable, required — Step output overrides used when running this example.
    - `latestRunId` string, nullable, required — Most recent run id created from this example.
    - `createdAt` union
      - string
      - string
    - `updatedAt` union
      - string
      - string
  - `total` integer, required
  - `limit` integer, required
  - `offset` integer, required

## Other responses

- `400` — Validation error. Request shape did not match the spec.
- `401` — Missing or invalid API key
- `403` — API key lacks required scope
- `404` — Resource not found
- `413` — Payload too large. Upload exceeded the per-request size cap.
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/eigenpal/apis/eigenpal-api.md) · [All operations](https://skmtc.dev/eigenpal/apis/eigenpal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/eigenpal/eigenpal-api/revisions/dddcddf1975c/schema)
