> ## 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.

# Retrieve a reconciliation match



## OpenAPI

````yaml /openapi.json get /reconciliation_matches/{id}
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/{id}:
    get:
      summary: Retrieve a reconciliation match
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Match retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReconciliationMatch'
        '404':
          description: Match not found
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

````