GET
Search global commercial registries for a company by name and country.
/api/v1/kyb/business/searchHeaders
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Your app’s secret key, sent as-is — not Bearer. |
AppId | Yes | The App ID from your dashboard. |
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | The business name to search for (partial or full match). |
country_code | string | Yes | The country code of the business’s country. |
Response
Returns anentity array of matching companies, each with its internationalNumber and country.
Errors
| Code | Meaning |
|---|---|
400 | Bad request — a required parameter is missing or malformed. |
401 | Unauthorized — check your key and AppId (no Bearer prefix). |
402 | Insufficient wallet balance. Fund your wallet. |
404 | No record found for the supplied identifier. |
429 | Too many requests — back off and retry. |
curl --request GET \
"https://api.dojah.io/api/v1/kyb/business/search?name=ABCD&country_code=EX" \
-H "Authorization: {{secret_key}}" \
-H "AppId: {{app_id}}"
const params = new URLSearchParams({
"name": "ABCD",
"country_code": "EX",
});
const url = "https://api.dojah.io/api/v1/kyb/business/search?" + params;
const res = await fetch(url, {
headers: {
Authorization: process.env.DOJAH_SECRET_KEY,
AppId: process.env.DOJAH_APP_ID,
},
});
const data = await res.json();
import os, requests
res = requests.get(
"https://api.dojah.io/api/v1/kyb/business/search",
headers={
"Authorization": os.environ["DOJAH_SECRET_KEY"],
"AppId": os.environ["DOJAH_APP_ID"],
},
params={ "name": "ABCD", "country_code": "EX" },
)
data = res.json()
{
"entity": [
{
"name": "ABCD GLOBAL INDUSTRIES LTD",
"internationalNumber": "200045678",
"country": { "name": "Exampleland", "code": "EX" }
},
{
"name": "ABCD HOLDINGS PLC",
"internationalNumber": "200098765",
"country": { "name": "Exampleland", "code": "EX" }
}
]
}