---
title: "Get a list of quotes for a customer"
method: POST
path: "/api/v2/{product}/quotes"
---

# Get a list of quotes for a customer

`POST /api/v2/{product}/quotes`

## Path parameters

- `product` 'life' | 'group_life', required

## Request body

- union
  - LifeQuoteRequest
    - `address` Address — Same names and meanings as Google's geoocoding API. https://developers.google.com/maps/documentation/geocoding/requests-geocoding
      - `administrative_area_level_1` string — Named `Estado`
      - `interior_number` string — Name `Número interior`
      - `locality` string — Can be both `Municipio` or `Delegación`
      - `postal_code` string — 5 digits
      - `route` string — Named `Calle`
      - `street_number` string — Named `Número exterior`
      - `sublocality_level_1` string — Named `Colonia`
    - `date_of_birth` string, date, required — ISO8601 date format
    - `email` string, email
    - `first_last_name` string — Usually the paternal name
    - `first_name` string — Given name
    - `height` integer — in cms
    - `marital_status` 'married' | 'divorced' | 'single' | 'civil_union' | 'widowed'
    - `mobile` string — E.164 mexican formatted number, has a plus sign and 13 digits
    - `monthly_income` integer — It can be used to filter quotes that are suitable for this income and to determine risk
    - `nationality` 'mexican' | 'other'
    - `plan_type` 'return_of_premium' | 'term' — Type of insurance. * `return_of_premium`: A plan that returns a percentage of the paid premium at the end of the insurance term * `term`: A plan for an insurance on a fixed term
    - `profession` string
    - `rfc` string — Mexican tax id for individuals, has 4 letters followed by 6 digits and another 3 chars
    - `second_last_name` string — Usually the maternal name
    - `sex_at_birth` 'male' | 'female', required — It can be used to filter quotes
    - `smoker` boolean — Affects the quotes that are returned
    - `weight` integer — in kgs
  - GroupLifeQuoteRequest
    - `age` integer, required — The customer's age

## Response `200`

Success

- object
  - `data` Quotes
    - `quotes` union[]
      - union
        - LifeQuote
          - `annual_premium` number — How much the customer will pay for this insurance, in case they choose to pay it on an annual basis
          - `coverages` Coverages — A map containing the coverages inclued in this quote. The key is the coverage's name, and the value is the sum insured selected
          - `id` string, uuid — Unique ID that represents a single quote (coverages, prices and insured data). Can be used to issue a policy
          - `link` string, uri — Link to buy the insurance with this specific quote and any data that was sent already prefilled in the application
          - `monthly_premium` number — How much the customer will pay for this inurance, in case they pay on a monthly basis
          - `plan_type` 'return_of_premium' | 'term' — Type of insurance. * `return_of_premium`: A plan that returns a percentage of the paid premium at the end of the insurance term * `term`: A plan for an insurance on a fixed term
          - `product` 'life'
          - `term_years` integer — The quantity of years this insurance will be valid for
        - GroupLifeQuote
          - `coverages` Coverages — A map containing the coverages inclued in this quote. The key is the coverage's name, and the value is the sum insured selected
          - `id` string, uuid — Unique ID that represents a single quote (coverages, prices and insured data). Can be used to issue a policy
          - `monthly_premium` number — How much the customer will pay for this inurance, in case they pay on a monthly basis
          - `product` 'group_life'
          - `term_years` integer — The quantity of years this insurance will be valid for

## Other responses

- `401` — Unauthorized
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/super/apis/super-seguros.md) · [All operations](https://skmtc.net/super/apis/super-seguros/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/super/super-seguros/revisions/17ba5cf3a3c1/schema)
