---
title: "Get match run results"
method: GET
path: "/v1/matching/runs/{runId}/groups"
tags: ["Matching"]
---

# Get match run results

`GET /v1/matching/runs/{runId}/groups`

Use this endpoint to retrieve all match groups from a specific matching run. Each group contains matched transaction pairs and confidence scores. The response uses cursor-based pagination.

## Path parameters

- `runId` string, required

## Query parameters

- `contextId` string, required
- `limit` integer
- `cursor` string
- `sort_order` 'asc' | 'desc'
- `sort_by` 'id' | 'created_at' | 'status'

## Headers

- `X-Request-Id` string

## Response `200`

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

- ListMatchGroupsResponse — Cursor-paginated list of match groups
  - `hasMore` boolean
  - `items` MatchGroupResponse[] — List of match groups
    - `confidence` ConfidenceScore
    - `confirmedAt` string
    - `contextId` string
    - `createdAt` string
    - `id` string
    - `items` MatchItemResponse[]
      - `allocatedAmount` number
      - `allocatedCurrency` string
      - `allowPartial` boolean
      - `createdAt` string
      - `expectedAmount` number
      - `id` string
      - `matchGroupId` string
      - `transactionId` string
      - `updatedAt` string
    - `rejectedReason` string
    - `ruleId` string
    - `runId` string
    - `status` 'PROPOSED' | 'CONFIRMED' | 'REJECTED' — Lifecycle status of a match group
    - `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)
