Draft Quote
Coverage Tiers
Simulate prices for the preset coverage tiers on a draft quote.
The response contains coverages that can be sent back on a quote update. Quotes that do not support coverage tiers return an empty tiers list.
get/v1/agency/draft_quote/{quote_id}/coverage_tiers
Path parameters
quote_idstring required
Response
Successful Response
Example response
{
"tier_set_version": "2026-09-000",
"tiers": [
{
"price": {
"premium_cents": 145000,
"taxes_cents": 8450,
"fees_cents": 6200
},
"policy_coverages": [
{
"name": "water_damage_limitation",
"config": [
{
"type": "limit",
"label": "Water Damage Limitation",
"value": "10%",
"default": "10%",
"options": [
"10%",
"25%",
"50%",
"75%",
"100%"
],
"editable": "yes"
},
{
"type": "sublimit",
"label": "Water Damage Limitation - Fungi Rot Sublimit",
"value": "5000",
"default": "5000",
"options": [
"5000",
"10000"
],
"editable": "no"
}
]
}
],
"property_coverages": [
{
"name": "water_damage_limitation",
"config": [
{
"type": "limit",
"label": "Water Damage Limitation",
"value": "10%",
"default": "10%",
"options": [
"10%",
"25%",
"50%",
"75%",
"100%"
],
"editable": "yes"
},
{
"type": "sublimit",
"label": "Water Damage Limitation - Fungi Rot Sublimit",
"value": "5000",
"default": "5000",
"options": [
"5000",
"10000"
],
"editable": "no"
}
]
}
]
}
]
}Changes
Changed in 1 of the 16 revisions of this API.1
- ○
endpoint added
endpoint-added
- ○