---
title: "List run iterations"
method: GET
path: "/projects/{projectId}/eval-runs/{runId}/iterations"
tags: ["Eval runs"]
---

# List run iterations

`GET /projects/{projectId}/eval-runs/{runId}/iterations`

Per-iteration results: actual tool calls, structured token usage, and latency. Cursor-paginated.

## Path parameters

- `projectId` string, required
- `runId` string, required

## Query parameters

- `limit` integer
- `cursor` string

## Response `200`

One page of iterations.

- EvalIterationPage
  - `items` EvalIteration[], required
    - `id` string, required
    - `testCaseId` string, nullable
    - `title` string, nullable
    - `iterationNumber` integer, required
    - `status` 'pending' | 'running' | 'completed' | 'failed' | 'cancelled', required
    - `result` 'passed' | 'failed' | 'null', nullable
    - `model` string, nullable
    - `provider` string, nullable
    - `startedAt` number, nullable — Epoch milliseconds.
    - `durationMs` number, nullable — Wall-clock duration; `null` until terminal.
    - `tokensUsed` number, nullable
    - `usage` object, nullable — Structured token usage (input/output/cached/reasoning) when available.
    - `actualToolCalls` object[]
    - `expectedToolCalls` object[]
    - `error` string, nullable
  - `nextCursor` string — Opaque cursor for the next page. Omitted on the last page.

## Other responses

- `401` — Missing, invalid, revoked, or orphaned key (`UNAUTHORIZED`) — or the **target MCP server** needs an OAuth grant (`OAUTH_REQUIRED`), which is a property of the server, not your key.
- `403` — Key is valid but not allowed to do this.
- `404` — Unknown project, server, or resource.
- `429` — Per-key rate limit exceeded (60 requests/minute sustained, bursts up to 10). Honor `Retry-After` and back off with jitter.
- `500` — Something failed on MCPJam's side.

---

[API](https://skmtc.net/mcpjam/apis/mcpjam-api.md) · [All operations](https://skmtc.net/mcpjam/apis/mcpjam-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mcpjam/mcpjam-api/versions/75f218486b1d/schema)
