> ## 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 company profile



## OpenAPI

````yaml openapi/kyb.yaml get /kyb/companies/{id}
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}:
    get:
      tags:
        - Companies
      summary: Get company profile
      operationId: getCompany
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Company profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Company'
components:
  schemas:
    Company:
      type: object
      properties:
        name:
          type: string
        legal_name:
          type: string
        registration_number:
          type: string
        tax_id:
          type: string
        legal_form:
          type: string
        status:
          type: string
        incorporation_date:
          type: string
          format: date
        country:
          type: string
        address:
          type: object
        industry:
          type: object
        capital:
          type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````