> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /kbo/companies

> Get a Belgian company's registry record from the Crossroads Bank for Enterprises (CBE/KBO/BCE) by its enterprise number: status, legal situation, start date, all registered names (with language), official abbreviation, registered seat address, contact details (phone, fax, email, web), entity type, legal form, number of establishment units, directors and other legal functions (role, name, since), entrepreneurial skills, characteristics (employer, VAT, registration), authorisations, NACE-BEL activity codes (VAT and NSSO, all versions), financial information (capital, annual assembly, financial year end) and links to related entities.

**Price:** 1 credit

**⚠️ Common errors:** 412: No company found for the given enterprise number



## OpenAPI

````yaml /openapi/company-registries.json post /api/kbo/companies
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/kbo/companies:
    post:
      tags:
        - /kbo
      summary: /kbo/companies
      description: >-
        Get a Belgian company's registry record from the Crossroads Bank for
        Enterprises (CBE/KBO/BCE) by its enterprise number: status, legal
        situation, start date, all registered names (with language), official
        abbreviation, registered seat address, contact details (phone, fax,
        email, web), entity type, legal form, number of establishment units,
        directors and other legal functions (role, name, since), entrepreneurial
        skills, characteristics (employer, VAT, registration), authorisations,
        NACE-BEL activity codes (VAT and NSSO, all versions), financial
        information (capital, annual assembly, financial year end) and links to
        related entities.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No company found for the given enterprise
        number
      operationId: __api_kbo_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KboCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KboCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KboCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        enterprise_number:
          type: string
      type: object
      required:
        - enterprise_number
    KboCompany:
      properties:
        '@type':
          type: string
          default: KboCompany
        enterprise_number:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        abbreviation:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        legal_situation:
          anyOf:
            - type: string
            - type: 'null'
        legal_situation_since:
          anyOf:
            - type: string
            - type: 'null'
        start_date:
          anyOf:
            - type: string
            - type: 'null'
        names:
          items:
            $ref: '#/components/schemas/KboName'
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        address_since:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        fax:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        web:
          anyOf:
            - type: string
            - type: 'null'
        person_type:
          anyOf:
            - type: string
            - type: 'null'
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
        legal_form_since:
          anyOf:
            - type: string
            - type: 'null'
        establishment_unit_count:
          anyOf:
            - type: integer
            - type: 'null'
        functions:
          items:
            $ref: '#/components/schemas/KboFunction'
          type: array
          default: []
        entrepreneurial_skills:
          items:
            type: string
          type: array
          default: []
        characteristics:
          items:
            type: string
          type: array
          default: []
        authorisations:
          items:
            type: string
          type: array
          default: []
        nace_codes:
          items:
            $ref: '#/components/schemas/KboNaceCode'
          type: array
          default: []
        capital:
          anyOf:
            - type: string
            - type: 'null'
        annual_assembly:
          anyOf:
            - type: string
            - type: 'null'
        financial_year_end:
          anyOf:
            - type: string
            - type: 'null'
        links:
          items:
            $ref: '#/components/schemas/KboRelatedEntity'
          type: array
          default: []
        url:
          type: string
      type: object
      required:
        - enterprise_number
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KboName:
      properties:
        '@type':
          type: string
          default: KboName
        name:
          type: string
        language:
          anyOf:
            - type: string
            - type: 'null'
        since:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    KboFunction:
      properties:
        '@type':
          type: string
          default: KboFunction
        role:
          type: string
        name:
          type: string
        since:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - role
        - name
    KboNaceCode:
      properties:
        '@type':
          type: string
          default: KboNaceCode
        code:
          type: string
        activity_type:
          type: string
        version:
          type: string
        since:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - code
        - activity_type
        - version
    KboRelatedEntity:
      properties:
        '@type':
          type: string
          default: KboRelatedEntity
        enterprise_number:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        relationship:
          anyOf:
            - type: string
            - type: 'null'
        since:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - enterprise_number
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````