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
POST
{{URL}}/identitypass/verification/global/company/search_with_email
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
Company 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
Response | Description |
---|---|
status | Indicates that the request was successful. |
response_code | Represents the response code. |
message | Provides a message indicating that the companies were retrieved successfully. |
data | An array containing the retrieved company information. |
name | The name of the company. |
shortName | The short name of the company. |
brandName | The brand name of the company. |
internationalNumber | The international number or registration code of the company. |
countryCode | The country code of the company. |
Updated 5 months ago