> ## 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/kyb.yaml post /kyb/monitor/subscribe
openapi: 3.0.3
info:
  title: TXCloud KYB API
  version: 1.0.0
  description: |
    Know Your Business - Business verification and corporate due diligence.
    Verify companies, identify beneficial owners, and screen against watchlists.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Verification
    description: Business verification
  - name: Companies
    description: Company data
  - name: Documents
    description: Document verification
  - name: Screening
    description: Sanctions/PEP screening
  - name: Risk
    description: Risk assessment
  - name: Monitoring
    description: Company monitoring
  - name: Registries
    description: Registry access
paths:
  /kyb/monitor/subscribe:
    post:
      tags:
        - Monitoring
      summary: Subscribe to monitoring
      operationId: subscribeKYBMonitoring
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KYBMonitorSubscription'
      responses:
        '201':
          description: Subscription created
components:
  schemas:
    KYBMonitorSubscription:
      type: object
      required:
        - company_id
      properties:
        company_id:
          type: string
        alerts:
          type: array
          items:
            type: string
        webhook_url:
          type: string
        check_frequency:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````