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

# /firmenbuch/companies

> Get an Austrian company's commercial register (Firmenbuch) card from justizonline.gv.at by its Firmenbuch number (FN). Accepts a plain FN such as '566577b' (the current record is resolved automatically) or a full record id such as '566577b_1'. Returns the record id, FN, name, registration status, domicile, snapshot date, legal form (abbreviation and full name), registered address (postal code, street, city) and the official register extract documents offered for this company (type, name, description and price).

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/company-registries.json post /api/firmenbuch/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/firmenbuch/companies:
    post:
      tags:
        - /firmenbuch
      summary: /firmenbuch/companies
      description: >-
        Get an Austrian company's commercial register (Firmenbuch) card from
        justizonline.gv.at by its Firmenbuch number (FN). Accepts a plain FN
        such as '566577b' (the current record is resolved automatically) or a
        full record id such as '566577b_1'. Returns the record id, FN, name,
        registration status, domicile, snapshot date, legal form (abbreviation
        and full name), registered address (postal code, street, city) and the
        official register extract documents offered for this company (type,
        name, description and price).


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No company found for the given Firmenbuch
        number
      operationId: __api_firmenbuch_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FirmenbuchCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FirmenbuchCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FirmenbuchCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
      type: object
      required:
        - company
    FirmenbuchCompany:
      properties:
        '@type':
          type: string
          default: FirmenbuchCompany
        id:
          type: string
        fnr:
          type: string
        name:
          type: string
        status:
          anyOf:
            - type: string
            - type: 'null'
        domicile:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        legal_form:
          anyOf:
            - $ref: '#/components/schemas/FirmenbuchLegalForm-Output'
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/FirmenbuchAddress'
            - type: 'null'
        documents:
          items:
            $ref: '#/components/schemas/FirmenbuchDocument'
          type: array
          default: []
      type: object
      required:
        - id
        - fnr
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    FirmenbuchLegalForm-Output:
      properties:
        '@type':
          type: string
          default: FirmenbuchLegalForm-Output
        abbr:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FirmenbuchAddress:
      properties:
        '@type':
          type: string
          default: FirmenbuchAddress
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    FirmenbuchDocument:
      properties:
        '@type':
          type: string
          default: FirmenbuchDocument
        type:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          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

````