Business Registrations

Search for business's commercial registration

Retrieves the business's information from the commercial registry. You must add the business's registration_number and registration_issuer in the request URL.

get/v1/commercial_registrations/find

Query parameters

registration_numberstring

The business's commercial registration number without spaces.

registration_issuerstring

The entity that issued the business commercial registration number.

countrystring

The country code where the business is registered.

Response

Operation was successful

namestring required

The business's registered name.

legal_formstring

The business's legal form.

tax_countrystring

The country where the business is taxable.

registration_numberstring

The business's commercial registration number without spaces.

registration_issuerstring

The entity that issued the business commercial registration number.

registration_datestring

The date when the business was registered.

registry_updated_atstring

The date when the business's entry in the commercial registry was last amended.

commercial_registry_industry_keystring[]

A list of NACE codes or industry keys for the business

Example response

{
  "name": "FLOOR 13 GmbH",
  "address": {
    "line_1": "Seestraße 9",
    "postal_code": "86919",
    "city": "Utting a.Ammersee",
    "country": "DE"
  },
  "legal_form": "GMBH",
  "tax_country": "DE",
  "registration_number": "HRB198673",
  "registration_issuer": "AMTSGERICHT München",
  "registration_date": "2012-05-09",
  "registry_updated_at": "2015-11-17",
  "commercial_registry_industry_key": [
    "55.10.1 Hotels"
  ],
  "legal_representatives": [
    {
      "first_name": "Stefan",
      "last_name": "Schneider"
    }
  ]
}