Skip to main content
POST
/
api
/
handelsregister
/
companies
/handelsregister/companies
curl --request POST \
  --url https://api.anysite.io/api/handelsregister/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "court": "<string>",
    "register_type": "<string>",
    "register_number": "<string>",
    "@type": "@handelsregister_company",
    "legal_form": "<string>",
    "registered_office": "<string>",
    "address": {
      "@type": "@handelsregister_address",
      "street": "<string>",
      "house_number": "<string>",
      "postal_code": "<string>",
      "city": "<string>",
      "country": "<string>"
    },
    "capital": {
      "@type": "@handelsregister_capital",
      "value": 123,
      "currency": "<string>"
    },
    "purpose": "<string>",
    "representation": "<string>",
    "status": "<string>",
    "last_entry_date": "<string>",
    "entry_count": 123,
    "last_change_date": "<string>",
    "first_statute_date": "<string>",
    "officers": [
      {
        "@type": "@handelsregister_officer",
        "name": "<string>",
        "role": "<string>",
        "organization_name": "<string>",
        "birth_date": "<string>",
        "city": "<string>",
        "representation": "<string>"
      }
    ],
    "former_names": [
      "<string>"
    ],
    "register_entries": [
      "<string>"
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company identity as 'court/register_type/number'

Minimum string length: 1
Examples:

"München/HRB/6684"

"D2601/HRB/6684"

"Berlin (Charlottenburg)/HRB/170416"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
court
string
required
register_type
string
required
register_number
string
required
@type
string
default:@handelsregister_company
registered_office
string | null
address
HandelsregisterAddress · object
capital
HandelsregisterCapital · object
purpose
string | null
representation
string | null
status
string | null
last_entry_date
string | null
entry_count
integer | null
last_change_date
string | null
first_statute_date
string | null
officers
HandelsregisterOfficer · object[]
former_names
string[]
register_entries
string[]