DocsAPI ReferenceAddress/api/v1/address/load-address-by-company-registration-number
getAddressPublic API v1

/api/v1/address/load-address-by-company-registration-number

Fetches company details from official business registries based on company registration number. Returns company name, address, tax ID, and other registered information. Supports multiple countries (CZ, SK, and others). apiKey is optional for public access, but rate-limited.

AddressgetApiV1AddressLoad-address-by-company-registration-number

Parameters

3 query

3 total
Query · 3
apiKeystring

Your BizKitHub API key (passed as GET parameter).

Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more

companyRegistrationNumberstringRequired

Company registration number (IČO in CZ, similar in other countries).

countrystring

ISO 3166-1 alpha-2 country code.

Request

GET /api/v1/address/load-address-by-company-registration-number

get
curl -X GET "https://api.bizkithub.com/api/v1/address/load-address-by-company-registration-number?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE&companyRegistrationNumber=12345678&country=CZ" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "companyName": "example_companyName",
  "streetAddress": "example_streetAddress",
  "city": "example_city",
  "postalCode": "example_postalCode",
  "country": "CZ",
  "companyRegistrationNumber": "example_companyRegistrationNumber",
  "taxIdentificationNumber": "example_taxIdentificationNumber"
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key