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

# Subscribe to monitoring



## OpenAPI

````yaml openapi/watchlist.yaml post /watchlist/monitor/subscribe
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/monitor/subscribe:
    post:
      tags:
        - Monitoring
      summary: Subscribe to monitoring
      operationId: subscribeWatchlistMonitoring
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WatchlistMonitorSubscription'
      responses:
        '201':
          description: Subscription created
components:
  schemas:
    WatchlistMonitorSubscription:
      type: object
      required:
        - entity
      properties:
        entity:
          type: object
          properties:
            reference_id:
              type: string
            type:
              type: string
            name:
              type: string
        lists:
          type: array
          items:
            type: string
        webhook_url:
          type: string
        check_frequency:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````