---
title: "List a table's enrichment runs (cursor-paginated)"
method: GET
path: "/tables/{tableId}/enrichment-runs"
tags: ["Workspace"]
---

# List a table's enrichment runs (cursor-paginated)

`GET /tables/{tableId}/enrichment-runs`

Same list as `GET /enrichment-runs?tableId=`, but the table is
resolved org-scoped first — a missing or cross-org table returns
`404 TABLE_NOT_FOUND` instead of an empty list.

## Query parameters

- `cursor` string
- `limit` integer

## Response `200`

A page of enrichment-run summaries in the canonical list envelope.

- object — The canonical v2 list envelope. Every list endpoint returns this shape; per-endpoint `items` element types (and documented extras like `total`) are declared on each operation.
  - `object` 'list', required
  - `items` EnrichmentRun[], required — The page of objects. Element type is per-endpoint.
    - `object` 'enrichment_run', required
    - `id` string, uuid, required
    - `batchId` string, uuid, required — Legacy alias of `id` — kept for pre-restructure consumers.
    - `tableId` string, uuid, required
    - `type` string, required — The run's work type (e.g. `upsert`).
    - `status` string, required
    - `createdAt` string, date-time, required
    - `completedAt` string, date-time, nullable, required
  - `nextCursor` string, nullable, required — Cursor for the next page; `null` means this is the last page.
  - `url` string, required — The path this list was fetched from (query string excluded).

## Other responses

- `404` — TABLE_NOT_FOUND.

---

[API](https://skmtc.net/origami/apis/origami-agent-api.md) · [All operations](https://skmtc.net/origami/apis/origami-agent-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/origami/origami-agent-api/revisions/8083ad7fe081/schema)
