/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.
Parameters
3 query
apiKeystringYour 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
companyRegistrationNumberstringRequiredCompany registration number (IČO in CZ, similar in other countries).
countrystringISO 3166-1 alpha-2 country code.
Request
GET /api/v1/address/load-address-by-company-registration-number
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.