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
| Key | Description |
|---|---|
| app-id | Your App ID |
| x-api-key | Your Secret Key |
Request Body
| Key | Description |
|---|---|
| country_code | Company country code e.g ng. Get country codes here |
| company_name | Company name |
Sample Response
{
"status": true,
"response_code": "00",
"message": "Companies Retrieved Successfully",
"data": [
{
"name": "Uber Technologies, Inc.",
"shortName": null,
"brandName": null,
"internationalNumber": "483",
"countryCode": "us-de"
},
{
"name": "ROB ALEXANDA HOMES, INC",
"shortName": null,
"brandName": null,
"internationalNumber": "483",
"countryCode": "us-ca"
},
{
"name": "K TRP LLC",
"shortName": null,
"brandName": null,
"internationalNumber": "483",
"countryCode": "us-ny"
}
],
"verification": {
"status": "VERIFIED",
"reference": "addcfab4-0005-4c1e-8bed-96867c"
},
"widget_info": {},
"session": {},
"endpoint_name": "Company Search with Name"
}
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 over 1 year ago
