v1
latestOpenAPI 3.0.02026-07-2468247202.3 KBData (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
Response
Wrapped list; results array and total_count. Each item has business_info (name, business_entity_id, entity_type, country_code, state_code, addresses).
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"
}
}
]
}
}
]
}