Skip to main content
POST
/
api
/
firmenbuch
/
companies
/firmenbuch/companies
curl --request POST \
  --url https://api.anysite.io/api/firmenbuch/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "fnr": "<string>",
    "name": "<string>",
    "@type": "@firmenbuch_company",
    "status": "<string>",
    "domicile": "<string>",
    "date": "<string>",
    "legal_form": {
      "@type": "@firmenbuch_legal_form-output",
      "abbr": "<string>",
      "name": "<string>"
    },
    "address": {
      "@type": "@firmenbuch_address",
      "zip_code": "<string>",
      "street": "<string>",
      "city": "<string>"
    },
    "documents": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Austrian Firmenbuch number (FN), e.g. '566577b', or a full record id such as '566577b_1'

Example:

"566577b"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
fnr
string
required
name
string
required
@type
string
default:@firmenbuch_company
status
string | null
domicile
string | null
date
string | null
address
FirmenbuchAddress · object
documents
FirmenbuchDocument · object[]