Company Search With Email

This API endpoint allows you to search for companies using their email address. When you send the request, the API will respond with a list of companies that match the provided email address, along with some basic information about each company. The response will be in JSON format and will include a status message indicating whether the search was successful or not.

This API endpoint is useful for businesses looking to verify the authenticity of companies they are doing business with or for marketing and sales purposes.

Make sure to include your App ID and Secret Key in the header of your request to authorize access to the API.

The search result may include companies that are not the exact match of the provided email address.

👍

TEST DATA

[email protected]

📘

POST

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

Request Header

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

Request Body

KeyDescription
emailCompany email

Sample Response

{
    "status": true,
    "response_code": "00",
    "message": "Companies Retrieved Successfully",
    "data": [
        {
            "name": "TINACLE GREENWAY INT'L COMPANY",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "BN-2335181",
            "countryCode": "ng"
        },
        {
            "name": "AWALU IBRAHIM (ALH) NIGERIA LIMITED",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-76023",
            "countryCode": "ng"
        },
        {
            "name": "GAS ON DEMAND NIGERIA LIMITED  ",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-1252198",
            "countryCode": "ng"
        },
        {
            "name": "GIBSON ENERGY SERVICES LTD",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-1293642",
            "countryCode": "ng"
        },
        {
            "name": "TEMTEX ULTRA SERVICES LTD",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-1247326",
            "countryCode": "ng"
        },
        {
            "name": "DONKATE INTERNATIONAL LTD",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-76975",
            "countryCode": "ng"
        },
        {
            "name": "OUTCROP RESOURCES NIGERIA LIMITED",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-1222635",
            "countryCode": "ng"
        },
        {
            "name": "COSSET LTD",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-75388",
            "countryCode": "ng"
        },
        {
            "name": "DEMMYLAD MEGA RESOURCES LIMITED",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-1249123",
            "countryCode": "ng"
        },
        {
            "name": "GRAPHWELL BROTHERS NIGERIA  LIMITED",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "RC-73861",
            "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.