---
title: "List match runs"
method: GET
path: "/v1/matching/contexts/{contextId}/runs"
tags: ["Matching"]
---

# List match runs

`GET /v1/matching/contexts/{contextId}/runs`

Use this endpoint to retrieve all match runs for a specific reconciliation context. The results are sorted by creation time descending.

## Path parameters

- `contextId` string, required

## Query parameters

- `limit` integer
- `cursor` string
- `sort_order` 'asc' | 'desc'

## Headers

- `X-Request-Id` string

## Response `200`

Indicates that the request was successful and the response contains the expected data.

- ListMatchRunsResponse — Cursor-paginated list of match runs
  - `hasMore` boolean
  - `items` MatchRunResponse[] — List of match runs
    - `completedAt` string
    - `contextId` string
    - `createdAt` string
    - `failureReason` string
    - `id` string
    - `mode` 'DRY_RUN' | 'COMMIT' — Execution mode for a matching run
    - `startedAt` string
    - `stats` object
    - `status` 'PROCESSING' | 'COMPLETED' | 'FAILED' — Lifecycle status of a matching run
    - `updatedAt` string
  - `limit` integer
  - `nextCursor` string
  - `prevCursor` string

## Other responses

- `400` — The request contains invalid parameters or payload.
- `401` — The request lacks valid authentication credentials.
- `403` — You do not have permission to access this resource.
- `404` — The requested resource was not found.
- `500` — An unexpected error occurred on the server.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
