The commercial object
Required properties
Parameter | Type | Description |
---|---|---|
street1 | String | The number and street of the entity. |
state | String | The US state where the entity is located. The value should be abbreviated. Example: TX |
postal_code | String | The 5-digit postal code of the entity. Example: 76063 |
city | String | The city where the entity is located. |
business_name | String | The name of the entity. |
contact_name | String | The full name of the best contact for the entity. |
contact_phone | String | The phone number for the best contact. Should be a valid US phone number. It is preferred if the phone number doesn't have any spaces, parentheses, and dashes. Example: 7195025680 |
Optional properties
Parameter | Type | Description |
---|---|---|
dba_name | String | The DBA name for the entity (if different from the legal name). |
contact_title | String | The title of the best contact for the entity. Example: CEO |
contact_email | String | The email address for the best contact for the entity. |
ein_tin | String | The EIN or TIN of the entity. Example: 12-3456789 |
sic_code | Number | The 4-digit SIC code for the entity. Example: 1521 |
website_address | String | The website address for the entity. Example: www.sample.com |
operations_description | String | A description of the business operations of the entity. Example: Home construction and remodeling |
entity_type | String | The type of business entity. The accepted values are Corporation, DBA, Partnership, LLC, and Sole-Prop. |
year_established | Number | The year in which the entity was established. Example: 2008 |
locations_count | Number | The number of locations the entity has. Any whole number (non-negative, no decimal) is accepted. Example: 3 |
part_time_employees_count | Number | The number of part-time employees the entity has. Any whole number (non-negative, no decimal) is accepted. Example: 15 |
full_time_employees_count | Number | The number of full-time employees the entity has. Any whole number (non-negative, no decimal) is accepted. Example: 10 |
estimated_annual_payroll | Number | The estimated annual payroll of the entity. Any whole number (non-negative, no decimal) is accepted. Example: 150000 |
annual_revenue | Number | The annual revenue of the entity. Any whole number (non-negative, no decimal) is accepted. Example: 3500000 |
building_type | String | The type of building the entity operates in. Example: Block metal |
building_ownership | String | The ownership status of building the entity operates in. Accepted values are owned or rented |
building_square_feet | Number | The square feet of the building the entity operates in. Any whole number (non-negative, no decimal) is accepted. Example: 4250 |
building_contents_value | Number | The total value of the contents of the building the entity operates in. Any whole number (non-negative, no decimal) is accepted. Example: 1000000 |
building_tenant_improvements | Number | The total value of tenant improvements to the building the entity operates in. Any whole number (non-negative, no decimal) is accepted. Example: 75000 |
building_cost_sign | Number | The total cost of the sign for the building the entity operates in. Any whole number (non-negative, no decimal) is accepted. Example: 1250 |
additional_notes | String | Any additional notes about the commercial entity. |
Example
{
"business_name": "Cornerstone Construction",
"dba_name": "",
"street1": "123 Main St"
"city": "Columbus",
"state": "OH",
"postal_code": "43215",
"contact_name": "Sam Smith",
"contact_title": "Partner",
"contact_phone": "5551234567",
"contact_email": "june@gmail.com",
"ein_tin": "12-3456789",
"sic_code": 1521,
"website_address": "www.cornerstone.xyz",
"operations_description": "We do home construction and remodeling",
"entity_type": "Partnership",
"year_established": "2020",
"locations_count": 1,
"part_time_employees_count": 2,
"full_time_employees_count": 3,
"estimated_annual_payroll": 125000,
"annual_revenue": 250000,
"building_type": "Block metal",
"building_ownership": "owned",
"building_square_feet": 4280,
"building_contents_value": 500000,
"building_tenant_improvements": 75000,
"building_cost_sign": 850,
"additional_notes": "Has additional insureds...",
}