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

# List available watchlists



## OpenAPI

````yaml openapi/watchlist.yaml get /watchlist/lists
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/lists:
    get:
      tags:
        - Lists
      summary: List available watchlists
      operationId: listWatchlists
      responses:
        '200':
          description: Watchlists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistList'
components:
  schemas:
    WatchlistList:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              category:
                type: string
              entries:
                type: integer
              last_updated:
                type: string
                format: date
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````