v1

latestOpenAPI 3.0.02026-07-2468247202.3 KB
Data (Business)

Business Search (Autofill)

Use this API in your SDK to auto-fill business information when a customer onboards, speeding up the onboarding process. Search businesses by name. Returns matches with standard business_info (name, business_entity_id, state_code, etc.). Returns registry data only — no verification is performed. Requires X-API-KEY header. Mandatory: name, country_code. Optional: state_code.

post/data/business/search

Request body

namestring required

Business name to search.

country_codestring required

ISO country code (e.g. US, GB).

state_codestring nullable

Optional state/region code (e.g. for US).

Response

Wrapped list; results array and total_count. Each item has business_info (name, business_entity_id, entity_type, country_code, state_code, addresses).

total_countinteger

Number of items in results.

Example response

{
  "results": [
    {
      "business_info": {
        "addresses": [
          {
            "full_address": "222 Palm Street, Santa Monica, CA - 93251, US",
            "parsed_address": {
              "address_street_1": "222 Palm Street",
              "address_city": "Santa Monica",
              "address_state": "CA",
              "address_zip_code": "93251",
              "address_country": "US",
              "address_type": "home"
            }
          }
        ]
      }
    }
  ]
}