# Global Business Search

{% hint style="info" %}
TEST DATA

company\_name: Test Company

country\_code: ng
{% endhint %}

## Search for a company

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/global/company/search`

#### Headers

| Name                                        | Type   | Description     |
| ------------------------------------------- | ------ | --------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | your secret key |
| app-id<mark style="color:red;">\*</mark>    | String | your app id     |

#### Request Body

| Name                                            | Type   | Description                  |
| ----------------------------------------------- | ------ | ---------------------------- |
| country\_code<mark style="color:red;">\*</mark> | String | company country e.g Nigeria, |
| company\_name<mark style="color:red;">\*</mark> | String | company registration number  |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "status": true,
    "response_code": "00",
    "message": "Companies Retrieved Successfully",
    "data": [
        {
            "name": "",
            "shortName": "",
            "brandName": "",
            "internationalNumber": "",
            "countryCode": ""
        },
        
        .........
    ]
}
```

{% endtab %}
{% endtabs %}
