> ## 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 ownership structure



## OpenAPI

````yaml openapi/kyb.yaml get /kyb/companies/{id}/structure
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}/structure:
    get:
      tags:
        - Companies
      summary: Get ownership structure
      operationId: getOwnershipStructure
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ownership structure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OwnershipStructure'
components:
  schemas:
    OwnershipStructure:
      type: object
      properties:
        company_id:
          type: string
        shareholders:
          type: array
          items:
            type: object
        subsidiaries:
          type: array
          items:
            type: object
        structure_depth:
          type: integer
        total_ubos:
          type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````