> ## Documentation Index
> Fetch the complete documentation index at: https://endclose.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List reconciliation matches

> Returns a paginated list of matches, optionally filtered by reconciliation or status.



## OpenAPI

````yaml /openapi.json get /reconciliation_matches
openapi: 3.1.0
info:
  title: End Close API
  description: REST API is used to interact with the End Close platform.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.endclose.com/v1
security:
  - ApiKeyAuth: []
paths:
  /reconciliation_matches:
    get:
      summary: List reconciliation matches
      description: >-
        Returns a paginated list of matches, optionally filtered by
        reconciliation or status.
      parameters:
        - in: query
          name: reconciliation_id
          schema:
            type: string
          description: Filter by reconciliation
        - in: query
          name: status
          schema:
            type: string
          description: Filter by match status
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - in: query
          name: offset
          schema:
            type: integer
          description: Pagination offset
      responses:
        '200':
          description: Paginated list of matches
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReconciliationMatch'
                  has_more:
                    type: boolean
                  offset:
                    type: number
                  total_count:
                    type: integer
                    description: >-
                      Total number of matches matching the filters, across all
                      pages
components:
  schemas:
    ReconciliationMatch:
      type: object
      description: >-
        A reconciliation match represents a group of records that have been
        matched together. Endclose supports many-to-one matching, so a single
        match can contain a large number of records — to retrieve them, use `GET
        /v1/records?reconciliation_match_id={id}`.
      properties:
        id:
          type: integer
        status:
          type: string
        group_key:
          type: string
        reconciliation_id:
          type: integer
        reconciliation_rule_id:
          type: integer
        created_at:
          type: string
          format: date-time
        record_count:
          type: integer
          description: Total number of records in this match
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````