> ## 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 beneficial owners



## OpenAPI

````yaml openapi/kyb.yaml get /kyb/companies/{id}/ubos
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/companies/{id}/ubos:
    get:
      tags:
        - Companies
      summary: Get beneficial owners
      operationId: getUBOs
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: UBOs list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UBOList'
components:
  schemas:
    UBOList:
      type: object
      properties:
        company_id:
          type: string
        ubos:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              nationality:
                type: string
              ownership:
                type: object
              verification:
                type: object
              screening:
                type: object
        total_ownership_identified:
          type: number
        ubo_threshold:
          type: number
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````