pricing; external programs return pricing: null.TI, BOP, GL, DP, etc.commercial (fans out across all types)travel-insuranceprogram_type from bodyprogram_id promotes that program to position 0 with selected: true. All other eligible programs are still returned. To get only that program back, add limit: 1.program_id + response_mode: pricing to re-price a selected program after a coverage change. Returns { program_id, pricing, applied_options } only — no other fields.system_payload is the cache key. Repeat calls with identical payload return instantly.curl --location '/v1/rate/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"country_of_residence": "IN",
"destination_country": "US",
"start_date": "2026-05-01",
"end_date": "2026-06-01",
"insureds": [
{
"date_of_birth": "1960-05-15",
"relationship": "primary"
},
{
"date_of_birth": "1990-03-20",
"relationship": "spouse"
}
],
"coverage": {
"plan_max": 100000,
"plan_ded": 500
}
}'{
"success": true,
"data": [
{
"program_id": "c70f27d4-0f63-443c-b210-5dd3c0dd52d5",
"product_code": "HOP-ADVANTAGE",
"product_name": "HOP! Advantage",
"carrier_code": "siriuspoint",
"carrier_name": "SiriusPoint",
"rating_method": "factor",
"trip_days": 31,
"num_insureds": 1,
"selected": false,
"pricing": {
"premium": 44.86,
"fees": 3.14,
"taxes": 0,
"total": 48
},
"rating": {
"rating_type": "internal"
},
"full_payload": null
},
{
"program_id": "5d7a8e9f-fc01-4fea-82f8-9c4c67ff325c",
"product_code": "BMI-CLASSICO",
"product_name": "BMI Classico",
"carrier_code": "bmi",
"carrier_name": "BMI",
"rating_method": "external",
"trip_days": null,
"num_insureds": null,
"selected": false,
"pricing": null,
"rating": {
"rating_type": "external"
},
"full_payload": null
}
]
}