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: ke
POST: https://api.prembly.com/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 ke. Get country codes here | 
| company_name | Company name | 
Sample Response
{
    "status": true,
    "response_code": "00",
    "message": "Companies Retrieved Successfully",
    "data": [
        {
            "name": "PEZA ENTERPRISES",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "BN/2000/2000",
            "countryCode": "ke"
        },
        {
            "name": "PEZA SERVICES LIMITED",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "CPR/2000/100000",
            "countryCode": "ke"
        },
        {
            "name": "PEZA INTERNATIONAL LIMITED",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "PVT/2010/000000",
            "countryCode": "ke"
        },
        {
            "name": "PEZA INTERNATIONAL",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "BN/2000/11111",
            "countryCode": "ke"
        }
    ],
    "verification": {
        "status": "VERIFIED",
        "reference": "66e57-b13-48f-aaed-8daf4db"
    },
    "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 about 2 months ago
