v1

latestOpenAPI 3.0.02026-07-2468247202.3 KB
KYB > Quick Start

Get business data

Endpoint used to get business data from verification session

get/verify/get_business_data_from_request/{verification_session_id}

Path parameters

verification_session_idstring required

Verification session id

Response

Successful operation

namestring

The business name. (Legal name preferred)

alternate_namestring

Alternate business name. (DBA)

tax_identification_numberstring

Tax ID

websitestring

The business website

formation_datestring

The formation date in YYYY-MM-DD format

country_codestring

A 2-letter ISO country code where business is primarily registered.

state_codestring

State Code of the province/region where business is primarily registered.

business_entity_idstring

Entity ID given by the government to the business.

phone_numbersstring[]

List of phone numbers associated with this business

email_addressesstring[]

List of email addresses associated with this business

questions_responseobject

Questions responded by the business

Example response

{
  "name": "AiPrise",
  "alternate_name": "AiPrise Inc",
  "website": "www.aiprise.com",
  "formation_date": "1999-03-21",
  "country_code": "US",
  "addresses": [
    {
      "address_street_1": "222 Palm Street",
      "address_city": "Santa Monica",
      "address_state": "CA",
      "address_zip_code": "93251",
      "address_country": "US"
    }
  ],
  "phone_numbers": [
    "+13334445555"
  ]
}