Generates Life S&P offers (premiums and benefits) from multiple insurers for a bank’s customers.
cURL
curl --request POST \ --url https://staging.yasmina.ai/api/v1/life-snp/offers \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "applicant_id": "0123456789", "date_of_birth": "1990-06-15", "gender": "male", "smoker": false, "policy_term_years": 20, "premium_frequency": "monthly", "target_premium": 250 }'
[ { "offer_id": "<string>", "insurer": "<string>", "sum_assured": 123, "premium": 123, "premium_frequency": "<string>", "policy_term_years": 123, "riders_included": [ "<string>" ], "maturity_benefit": true, "notes": "<string>" } ]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Success
The response is of type object[].
object[]