POST
/
offers
Life S&P Products
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>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Success

The response is of type object[].