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

# /ares/companies

> Get Czech company identity and registration record by identification number (ICO)

**Price:** 1 credit

**⚠️ Common errors:** 412: No Czech company found for the given ICO



## OpenAPI

````yaml /openapi/company-registries.json post /api/ares/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/ares/companies:
    post:
      tags:
        - /ares
      summary: /ares/companies
      description: >-
        Get Czech company identity and registration record by identification
        number (ICO)


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No Czech company found for the given ICO
      operationId: __api_ares_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AresCompanyPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AresCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AresCompanyPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        ico:
          type: string
      type: object
      required:
        - ico
    AresCompany:
      properties:
        '@type':
          type: string
          default: AresCompany
        ico:
          type: string
        name:
          type: string
        dic:
          anyOf:
            - type: string
            - type: 'null'
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
        legal_form_ros:
          anyOf:
            - type: string
            - type: 'null'
        financial_authority:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        dissolved_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        primary_source:
          anyOf:
            - type: string
            - type: 'null'
        cz_nace:
          items:
            type: string
          type: array
        address:
          anyOf:
            - $ref: '#/components/schemas/AresAddress'
            - type: 'null'
        mailing_address:
          anyOf:
            - $ref: '#/components/schemas/AresMailingAddress'
            - type: 'null'
        registrations:
          anyOf:
            - $ref: '#/components/schemas/AresRegistrations'
            - type: 'null'
      type: object
      required:
        - ico
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AresAddress:
      properties:
        '@type':
          type: string
          default: AresAddress
        text:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        house_number:
          anyOf:
            - type: integer
            - type: 'null'
        orientation_number:
          anyOf:
            - type: integer
            - type: 'null'
        orientation_number_letter:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        city_part:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: integer
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AresMailingAddress:
      properties:
        '@type':
          type: string
          default: AresMailingAddress
        line1:
          anyOf:
            - type: string
            - type: 'null'
        line2:
          anyOf:
            - type: string
            - type: 'null'
        line3:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AresRegistrations:
      properties:
        '@type':
          type: string
          default: AresRegistrations
        public_register:
          anyOf:
            - type: string
            - type: 'null'
        trade_register:
          anyOf:
            - type: string
            - type: 'null'
        statistical_register:
          anyOf:
            - type: string
            - type: 'null'
        register_of_persons:
          anyOf:
            - type: string
            - type: 'null'
        vat:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````