The home quote object

Required properties

ParameterTypeDescription
is_ownerBooleanSet to true if household owns the home.
insurance_carrierStringThe insurance carrier of the quote. The list of supported carriers are here.
NOTE: If the carrier is not in the list, you can put it as is, but some features may not be supported for the agent.
homeObjectThe property covered by the quote. Learn more about the home object here.
NOTE: If a home has multiple quotes, just add the same home object for the home property of the other home quote/s.

Conditional properties

ParameterTypeConditionDescription
residence_typeStringRequired if is_owner is set to true.The type of home the household owns. The accepted values are Primary, Secondary, Condo, and Rental (case sensitive).
dwelling_coverageNumberEnabled if is_owner is set to true.The dwelling coverage of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000
separate_structures_coverageNumberEnabled if is_owner is set to true.The separate structures coverage of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000
wind_hail_deductibleNumberEnabled if is_owner is set to true.The wind/hail deductible of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000
hurricane_deductibleNumberEnabled if is_owner is set to true.The hurricane deductible of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000
Heads up

Values for conditional properties will be ignored unless the condition is met.

Optional properties

ParameterTypeDescription
is_escrowedBooleanSet to true if home is escrowed.
policy_renewal_dateStringThe policy renewal date of the quote. The date format should be YYYY-MM-DD.
Example: 2020-12-31
payment_planStringThe payment plan of the quote. The accepted values are Pay-in-Full, 2-Pay, Monthly-Credit/Debit, Monthly-by-Mail, 4-Pay, and Monthly-EFT (case sensitive).
full_term_premiumNumberThe full term premium of the quote. Any non-negative number is accepted.
Example: 5000.54
personal_property_coverageNumberThe personal property coverage of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000
personal_liability_coverageNumberThe personal liability coverage of the quote. The accepted values are 100000, 200000, 300000, 500000, 1000000, and 2000000.
loss_of_use_coverageNumberThe loss of use coverage of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000
living_expense_termStringThe living expense term of the quote. The accepted values are 12 months and 24 months (case sensitive).
guest_medical_coverageNumberThe guest medical coverage of the quote. The accepted values are 1000, 2000, 2500, and 5000.
other_deductibleNumberThe other deductibles of the quote. Any whole number (non-negative, no decimal) is accepted.
Example: 5000

Example

{
"is_owner": true,
"is_escrowed": true,
"residence_type": "Secondary",
"insurance_carrier": "Allstate",
"policy_renewal_date": "2021-12-31",
"payment_plan": "Pay-in-Full",
"full_term_premium": 2208,
"dwelling_coverage": 235730,
"separate_structures_coverage": 23573,
"personal_property_coverage": 153225,
"personal_liability_coverage": 300000,
"loss_of_use_coverage": 58933,
"living_expense_term": "24 months",
"guest_medical_coverage": 5000,
"wind_hail_deductible": 2357,
"hurricane_deductible": 2357,
"other_deductible": 2357,
"home": {
"street1": "6133 Flatley Heights",
"city": "Morissetteburgh",
"state": "NV",
"postal_code": "57461",
"baths": 3.5,
"fireplaces": 1,
"garages": 2,
"stories": 3,
"square_feet": 1191,
"roof_year": 2009,
"has_electric_heating": true,
"has_gas_heating": false,
"has_pool": true,
"build_year": 2009,
"total_market_value": 229965
}
}
*The details in the example above are fictional. Any resemblance to an actual property is purely coincidental.