Company Search With Name

This API allows you to search for a company by providing its name and country code. The country code is in strict compliance with the ISO-3166-1 Alpha-2 Standards

👍

TEST DATA

company_name: Doe Venture

country_code: ng

📘

POST

{{URL}}/identitypass/verification/global/company/search

Request Header

KeyDescription
app-idYour App ID
x-api-keyYour Secret Key

Request Body

KeyDescription
country_codeCompany country code e.g ng. Get country codes here
company_nameCompany name

Sample Response

{
    "status": true,
    "response_code": "00",
    "message": "Companies Retrieved Successfully",
    "data": [
        {
            "name": "Doe Venture",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "k2748478487",
            "countryCode": "ng"
        }
    ]
}

Response Description

ResponseDescription
statusIndicates that the request was successful.
response_codeRepresents the response code.
messageProvides a message indicating that the companies were retrieved successfully.
dataAn array containing the retrieved company information.
nameThe name of the company.
shortNameThe short name of the company.
brandNameThe brand name of the company.
internationalNumberThe international number or registration code of the company.
countryCodeThe country code of the company.