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. Transparenzregister
  3. Beneficial owners

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.

Attribute
Type
Description

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

Attribute
Type
Description

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"
        }
    ]
}
PreviousBeneficial ownersNextList documents

Last updated 9 months ago

Was this helpful?