List companies

List companies in registries based on search phrase

Input

User needs to provide search phrase and search mode. Results are limited upon to 100 items.

AttributeTypeDescription

search

String

Search phrase (at least 3 characters)

searchMode

String

Search mode:

  • ALL_KEYWORDS

  • ANY_KEYWORD

  • EXACT_MATCH

Output

AttributeTypeDescription

companyInfo

String

Information about the company, including the district court, registration number, and more.

companyName

String

The name of the company.

companyNumber

String

The registration number of the company.

court

String

The district court where the company is registered.

registry

String

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

registeredOffice

String

The location of the registered office of the company.

status

String

The current registration status of the company (e.g., currently registered).

{
 "handelsregister": [
    {
      "companyInfo": "Bavaria District court München VR 201131",
      "companyName": "1.Volkswagen & Audi Club Mittenwald e.V.",
      "companyNumber": "201131",
      "court": "München",
      "registry": "VR",
      "registeredOffice": "Mittenwald",
      "status": "currently registered"
    },
    {
      "companyInfo": "Saxony District court Dresden HRA 4035",
      "companyName": "AZ Verwaltungs GmbH & Co. KG",
      "companyNumber": "4035",
      "court": "Dresden",
      "registry": "HRA",
      "registeredOffice": "Dresden",
      "status": "currently registered"
    },
    {
      "companyInfo": "Saxony District court Dresden VR 3001",
      "companyName": "All-VW-Club \"Niederflur\" Sachsen e.V.",
      "companyNumber": "3001",
      "court": "Dresden",
      "registry": "VR",
      "registeredOffice": "Dresden",
      "status": "currently registered"
    },
    {
      "companyInfo": "Hesse District court Frankfurt am Main VR 8766",
      "companyName": "Arbeitsgemeinschaft von Partnergesellschaftern der Volkswagen Original Teile Logistik Gesellschaft (ArGe OTLG)",
      "companyNumber": "8766",
      "court": "Frankfurt am Main",
      "registry": "VR",
      "registeredOffice": "Frankfurt am Main",
      "status": "currently registered"
    }
}

Last updated