# Retrieve business registration number and issuer Returns the business registration number and issuer for a business by searching for it in the commercial registry by name and country. Endpoint: GET /v1/commercial_registrations/search_by_name Version: 1.0 ## Query parameters: - `name` (string) The business's registered name. - `country` (string) The country code where the business is registered. ## Response 200 fields (application/json): - `name` (string, required) The name of the business. Example: "Used Luxury Cars GmbH" - `registration_number` (string) The business's commercial registration number without spaces Example: "HRB 198673" - `registration_issuer` (string) The business's registered name. Example: "AMTSGERICHT München" ## Response 403 fields (application/json): - `title` (string) Example: "Unauthorized Action" - `status` (string) Example: "403" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Unauthorized action is not allowed." - `code` (string) Example: "unauthorized_action" ## Response 404 fields (application/json): - `title` (string) Example: "Model Not Found" - `status` (string) Example: "404" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Couldn't find 'Account' for id 'DE24112233445566'." - `code` (string) Example: "model_not_found"