Global Business Search

What is Global Business Search?

The Global Business Search endpoint allows you to search for business entities across the globe. This can be useful for verifying the existence, registration status, and details of companies in various countries. This endpoint helps businesses ensure compliance and verify the legitimacy of other business entities.

  • Endpoint: POST {{baseUrl}}/verification/business-search

  • Description: Perform a search for global business entities.

  • Headers:

    • Authorization: Bearer YOUR_API_KEY

    • Content-Type: application/json

Request Parameters:

{
    "business_name": "Yativo Inc.",
    "country": "US",
    "registration_number": "123456789",
    "address": "123 Business St, Business City, State, 12345",
    "phone": "+1234567890",
    "email": "contact@yativo.com"
}

Error Codes

The API uses standard HTTP status codes to indicate the success or failure of an API request. The following table provides details of common error codes:

import requests

url = "{{baseUrl}}/verification/business-search"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
data = {
    "business_name": "Yativo Inc.",
    "country": "US",
    "registration_number": "123456789",
    "address": "123 Business St, Business City, State, 12345",
    "phone": "+1234567890",
    "email": "contact@yativo.com"
}

response = requests.post(url, json=data, headers=headers)
print(response.json())

Last updated