Skip to main content

Pricing Grid

Defines a pricing grid used to calculate insurance costs based on insured amounts.

idstring

The identifier of the pricing grid.

Possible values: <= 30 characters

Example: grid_abc123
namestring

Human-readable name of the pricing grid.

Possible values: <= 50 characters

Example: Insurance product grid 2025
currencycurrency
Example: EUR
max_up_tonumber

Upper insured amount limit to which this pricing grid applies.

max_includedboolean

Indicates whether the upper price limit is included in this grid range. If false, the limit belongs to the next range.

unit_labelstring

Optional label describing the insured unit used for pricing calculations.

Example: montant assuré
pricing object[]

List of pricing ranges composing the grid.

  • Array [
  • up_tonumber

    Upper insured amount limit for this pricing range.

    Example: 10000
    relative_amountnumber

    Insurance price per insured unit. For example, a 9% rate is represented as 0.09 per insured unit.

    Example: 0.09
    absolute_amountnumber

    Fixed insurance price applied for this pricing range, regardless of the insured amount.

  • ]
  • period_validity_enddate-time

    End date and time after which this pricing grid is no longer valid.

    Pricing Grid
    {
    "id": "grid_abc123",
    "name": "Insurance product grid 2025",
    "currency": "EUR",
    "max_up_to": 0,
    "max_included": true,
    "unit_label": "montant assuré",
    "pricing": [
    {
    "up_to": 10000,
    "relative_amount": 0.09,
    "absolute_amount": 0
    }
    ],
    "period_validity_end": "2024-07-29T15:51:28.071Z"
    }