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

# Get match details



## OpenAPI

````yaml openapi/watchlist.yaml get /watchlist/matches/{id}
openapi: 3.0.3
info:
  title: TXCloud Watchlist API
  version: 1.0.0
  description: >
    AML/CFT screening against global sanctions lists, PEP databases, and adverse
    media.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Screening
    description: Entity screening
  - name: Matches
    description: Match management
  - name: Monitoring
    description: Ongoing monitoring
  - name: Lists
    description: Watchlist management
  - name: Analytics
    description: Screening analytics
paths:
  /watchlist/matches/{id}:
    get:
      tags:
        - Matches
      summary: Get match details
      operationId: getMatch
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Match details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Match'
components:
  schemas:
    Match:
      type: object
      properties:
        id:
          type: string
        screening_id:
          type: string
        status:
          type: string
        screened_entity:
          type: object
        matched_entry:
          type: object
          properties:
            list:
              type: string
            name:
              type: string
            aliases:
              type: array
              items:
                type: string
            category:
              type: string
            country:
              type: string
            details:
              type: object
            sources:
              type: array
              items:
                type: object
        match_score:
          type: number
        match_analysis:
          type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````