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

# Screen company & officers



## OpenAPI

````yaml openapi/kyb.yaml post /kyb/screen
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/screen:
    post:
      tags:
        - Screening
      summary: Screen company & officers
      operationId: screenCompany
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScreeningRequest'
      responses:
        '200':
          description: Screening result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScreeningResult'
components:
  schemas:
    ScreeningRequest:
      type: object
      properties:
        company_id:
          type: string
        watchlists:
          type: array
          items:
            type: string
        include_directors:
          type: boolean
        include_ubos:
          type: boolean
    ScreeningResult:
      type: object
      properties:
        id:
          type: string
        overall_status:
          type: string
        company:
          type: object
        directors:
          type: array
          items:
            type: object
        ubos:
          type: array
          items:
            type: object
        summary:
          type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````