List companies

List companies in registry based on search phrase

Input

User needs to provide search phrase. The search phrase should be detailed enough to find a specific company.

AttributeTypeDescription

search

String

Search phrase (at least 3 characters)

registerNumber

String

Registration number of company (optional)

court

String

The district court where the company is registered (optional)

registry

String

The type of registry (e.g., VR, HRA) where the company is registered (optional)

password

String

API access password

email

String

API access email

apiKey

String

API key

Output

AttributeTypeDescription

companyName

String

The name of the company

headquarters

String

The location of the company's main office

registerType

String

The type of register the company is listed in

registerNumber

String

The registration number of the company

ekrn

String

The European Company Registration Number (ECRN)

isDeleted

Boolean

Indicates whether the company record is deleted

registerCourtName

String

The name of the court where the company is registered

registerCourtKey

String

The key identifier for the register court

{
    "transparenzregister": [{
            "companyName": "CH Testtrüst 6 & Testsöhnê",
            "headquarters": "Hamburg",
            "registerType": "Handelsregister",
            "registerNumber": "HRB 123456",
            "ekrn": "DE384738734064",
            "isDeleted": false,
            "registerCourtName": "Amtsgericht Hamburg",
            "registerCourtKey": "AGHH"
        },
        {
            "companyName": "CH Testgésellschaft 3",
            "headquarters": "Köln",
            "registerType": "Handelsregister",
            "registerNumber": "HRB 654321",
            "ekrn": "DE013400858287",
            "isDeleted": false,
            "registerCourtName": "Amtsgericht Köln",
            "registerCourtKey": "AGK"
        },
        {
            "companyName": "CH Testgestaltung 2",
            "headquarters": "Rom",
            "registerType": "Handelsregister",
            "registerNumber": "HRB 789012",
            "ekrn": "DE549513318438",
            "isDeleted": false,
            "registerCourtName": "Amtsgericht Rom",
            "registerCourtKey": "AGR"
        }
    ]
}

Last updated