Skip to main content
POST
/
api
/
handelsregister
/
companies
/
branches
/handelsregister/companies/branches
curl --request POST \
  --url https://api.anysite.io/api/handelsregister/companies/branches \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "@handelsregister_branch",
    "city": "<string>",
    "address": {
      "@type": "@handelsregister_address",
      "street": "<string>",
      "house_number": "<string>",
      "postal_code": "<string>",
      "city": "<string>",
      "country": "<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:

"Stuttgart/HRA/12704"

"B2609/HRA/12704"

"Frankfurt am Main/HRA/29821"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:@handelsregister_branch
city
string | null
address
HandelsregisterAddress · object