Documentation
HomeSupportStatusSign in ->
  • Developer guide
  • How it works?
  • Integration Quick Guide
    • Link Flow
    • Embedded Flow
    • Running Workflow
  • Production setup
  • Webhooks
  • Widget
    • Methods
    • Inline mode
  • Postman Collection
  • Changelog
  • Records
    • Introduction
    • Migration Guide: Migrating from Cases to Records
  • TRANSACTIONLINK API
    • API Reference
      • Authentication
      • Cases (deprecated)
      • Resources
      • Parameters
      • Token
      • Link
      • Workflows
      • Records
        • Attachments
    • API Changelog
    • API Versioning
  • Integrations
    • AIS
      • Data fields availability across banks
      • Testing data
    • Autopay
    • BIG Info Monitor
      • Company Report
      • Personal Report
      • Entrepreneur Report
      • Plus Sco Plus CR3 Report
    • BankID
      • 🇳🇴Norway
      • 🇩🇰Denmark
    • CEIDG
      • Get company
      • List companies
    • Companies House
      • Public Data Api
        • Exemptions
        • Persons with significant Control
        • UK Establishments
        • Filing History
        • Registers
        • Registered Office Address
        • Company Profile
        • Officers
        • Insolvency
        • Charges
      • Documents Api
    • ComplyAdvantage
    • ComplyCube
      • Identity Verification
        • Document Check
        • Proof of Address Check
        • Identity Check
      • Document Check
      • AML Screening Check
      • Face Authentication Check
    • Data Ninja
      • Labeling
      • Profiling
      • Scoring
    • eDO App
    • GUS
    • IAML
    • KRD
      • Company Report
      • Personal Report
      • Identity Card Verification
    • mObywatel
      • CitizenDetails
      • CitizenNationality
    • OnDato
    • Polish VAT Whitelist
    • Przelewy 24
    • PWG
    • QARD
    • Rejestr.io
    • Registru Centras
      • Get company
      • List documents
      • Get document
    • Smart-ID
    • SMS API
    • Twilio
    • MojeId
    • Veriff
      • Supported Browsers
    • VIES (Vat Validation)
      • vies
    • Zoho Sign
      • Adding document fields automatically using text tags
    • Idenfy
    • GBG
      • IDScan
      • Verifications
    • Visa
    • KYB
      • Company Profile
    • Handelsregister
      • Company profile
        • List companies
        • Get company
        • Get company documents
    • InfoCamere
      • Company profile
        • List companies
        • List persons
        • Get company
        • Get person
        • Get documents
    • CBE - Belgium Company Register
      • Company profile
        • List companies
        • Get company
        • List documents
        • Get document
    • Transparenzregister
      • Beneficial owners
        • List companies
        • List documents
        • Get documents
    • CVR (Danish Central Business Register)
      • Company profile
        • List Companies
        • Get Company
        • Get document
    • Malta Business Registry
      • Company profile
        • List Companies
        • Get Company
Powered by GitBook
On this page
  • Input
  • Output

Was this helpful?

  1. Integrations
  2. Handelsregister
  3. Company profile

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.

Attribute
Type
Description

search

String

Search phrase (at least 3 characters)

searchMode

String

Search mode:

  • ALL_KEYWORDS

  • ANY_KEYWORD

  • EXACT_MATCH

Output

Attribute
Type
Description

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"
    }
}
PreviousCompany profileNextGet company

Last updated 1 year ago

Was this helpful?