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
  • Input Example
  • Output
  • Company Details
  • Previous Names
  • Output Example

Was this helpful?

  1. Integrations
  2. Malta Business Registry
  3. Company profile

List Companies

List companies based on provided input.

Input

Attribute
Type
Description
Required

registrationNumber

String

Registration number of the searched company

Only of these is requred.

name

String

The name of the searched company

Only of these is requred.

Input Example

{
    "registrationNumber": "12345"
}

Output

Company Details

Attribute
Type
Description

id

String

Unique identifier of the company

name

String

Name of the company

registrationNumber

String

Registration number of the company

registrationDate

String

Registration date of the company

state

String

State of the company's registration

suffix

String

Suffix of the company

address

String

Complete address of the company

street

String

Street address of the company

postcode

String

Postal code of the company

locality

String

Locality of the company

previousNames

Array<Object>

List of previous names used by the company

lastModified

String

Last modified date of the company's information

Previous Names

Attribute
Type
Description

uuid

String

Unique identifier of the previous name record

previousName

String

Name previously used by the company

effectiveDate

String

Date when the previous name was effective

companyUuid

String

Unique identifier of the company associated with this name

company

String

Name of the company associated with this previous name

Output Example

[
  {
    "id": "1a2b3c4d",
    "name": "Example Corp",
    "registration_number": "REG123456",
    "registration_date": "2020-01-01",
    "state": "Active",
    "suffix": "Ltd",
    "address": "123 Business Road",
    "street": "Business Avenue",
    "postcode": "BIZ123",
    "locality": "Business City",
    "previous_names": [
      {
        "uuid": "pre1a2b3c",
        "previous_name": "Old Corp",
        "effective_date": "2019-12-31",
        "company_uuid": "1a2b3c4d",
        "company": "Example Corp"
      }
    ],
    "last_modified": "2023-10-01"
  },
  {
    "id": "5e6f7g8h",
    "name": "Sample LLC",
    "registration_number": "REG654321",
    "registration_date": "2018-05-15",
    "state": "Active",
    "suffix": "LLC",
    "address": "456 Sample Street",
    "street": "Sample Boulevard",
    "postcode": "SMP456",
    "locality": "Sample Town",
    "previous_names": [
      {
        "uuid": "pre9w8x7y",
        "previous_name": "Test LLC",
        "effective_date": "2018-05-14",
        "company_uuid": "5e6f7g8h",
        "company": "Sample LLC"
      }
    ],
    "last_modified": "2023-09-20"
  }
]

PreviousCompany profileNextGet Company

Last updated 11 months ago

Was this helpful?