1. Rate
Olli
  • System
    • Confirm API connectivity
      GET
    • API health status
      GET
  • Programs
    • List programs available to the caller
      GET
    • Get program by ID
      GET
    • Get full detail on one program
      GET
  • Appetite
    • Search NAICS codes
      GET
    • Classifications for a NAICS code
      GET
    • Appetites for a classification
      GET
    • Full catalog for a classification
      GET
    • Appetite details (product-filtered)
      GET
  • Rate
    • Rate eligible programs for a risk
      POST
    • Sensitivity analysis across coverage options
      POST
  • Quote
    • List quote folios
      GET
    • Create a quote folio
      POST
    • View a quote folio (light — all programs)
      GET
    • Re-quote (new bindable, same group)
      POST
    • View one application (full — includes form schema + plan details)
      GET
    • Edit form_payload only
      POST
  • Bind
    • Bind quote requests
      POST
  • Policy
    • Get policy — full detail
      GET
    • Renewal payment
      POST
    • Cancel a policy
      POST
  • Schemas
    • Schemas
    • Response
    • Rates
  • Schemas
    • SuccessResponse
    • SuccessEnvelope
    • AttestationItem
    • ISO8601DateTime
    • ErrorResponse
    • ErrorEnvelope
    • BindQuotePayment
    • PingResponse
    • Pricing
    • Pagination
    • OffsetPagination
    • NaicsListResponse
    • PricingData
    • PricingNode
    • ValidationErrorEnvelope
    • BindQuoteItem
    • HealthResponse
    • CarrierRef
    • RateRequest
    • ProgramType
    • PagePagination
    • ClassificationListResponse
    • QuoteApplication
    • ProgramMarketing
    • PaginationWithPage
    • PolicyProgramNode
    • BindRequest
    • ProgramSummary
    • RateResult
    • CreateProgramTypeInput
    • PagePaginationWithMore
    • QuoteCarrierProgram
    • PlanDetails
    • ClassificationStub
    • PolicyCarrierNode
    • PolicyCustomer
    • ProgramEndorsement
    • MatrixRequest
    • UpdateProgramTypeInput
    • NaicsCode
    • QuoteFolio
    • ProgramNode
    • ClassificationFull
    • PolicyTermNode
    • PolicyBilling
    • ProgramOption
    • MatrixResult
    • ProgramListItem
    • Classification
    • CreateQuoteProgram
    • ProgramNodeFull
    • AppetiteItem
    • PolicySellerNode
    • PolicyDocumentAccess
    • ProgramTerm
    • Program
    • CreateClassificationInput
    • CreateQuoteRequest
    • CarrierNode
    • CatalogLimit
    • RateOption
    • PolicyCustomerNode
    • BoundPolicyReceipt
    • ProgramDetail
    • CreateProgramInput
    • UpdateClassificationInput
    • UpdateApplicationRequest
    • OptionItem
    • CatalogRule
    • AppliedOptions
    • PolicyInsuredItem
    • BindQuoteResult
    • ProductTypeEnum
    • UpdateProgramInput
    • AppetiteSummary
    • EndorsementItem
    • CatalogProductOption
    • PolicyLocationItem
    • BindSummary
    • RatingMethodEnum
    • AppetiteListItem
    • PaymentFrequency
    • CatalogEndorsement
    • PolicyEndorsementItem
    • BindResponseData
    • FormField
    • AppetiteCatalogEntry
    • PaymentOption
    • CatalogItem
    • PolicyCoverageItem
    • BindResponse
    • AppetiteDetail
    • DocumentItem
    • PolicyDocumentItem
    • BindResponseAllFailed
    • AppetiteRule
    • NoticeItem
    • NaicsWithClassificationsResponse
    • PolicyEventItem
    • ErrorResponse400
    • CreateAppetiteRuleInput
    • TermAndCondition
    • PolicyPaymentItem
    • ErrorResponseSimple
    • UpdateAppetiteRuleInput
    • FormSectionField
    • AppetiteListResponse
    • PolicyFull
    • AppetiteLimit
    • FormSection
    • CatalogResponse
    • AcceptedTerm
    • CreateAppetiteLimitInput
    • QuoteResponseProgramLight
    • Payment
    • UpdateAppetiteLimitInput
    • QuoteResponseProgramFull
    • PayBody
    • QuoteResponseLight
    • RecordedAcceptance
    • BillingConfig
    • PayResultToken
    • PayResultInvoiceAccount
    • PayResultCarrierCharge
    • PayResultFinalized
    • QuoteFolioCreated
    • CancelBody
    • CancelResult
    • CreateQuoteRatePayloadRequest
    • EditApplicationRequest
    • SystemPayload
    • FormPayload
  1. Rate

Sensitivity analysis across coverage options

POST
/v1/rate/{productType}/{programId}/matrix
Price one specific program across all combinations of one or more coverage options. Returns a grid with { coverage, pricing } per combination.
The response also includes options (available values per swept key — use these to build selectors) and applied_options (fixed selections held constant).
Only available for rating_method='factor' (internal) programs. External carrier programs return 400.
sweep is an array of coverage-option keys to vary. Values are pulled from the program's configured options — every combination is priced.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Matrix computed — one entry per coverage combination
Bodyapplication/json

🟠400BadRequest
🟠400BadRequest
🟠401Unauthorized
🟠401Unauthorized
🟠404NotFound
🟠404NotFound
🔴500InternalError
🔴500InternalError
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location '/v1/rate///matrix' \
--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": "1955-03-10",
            "relationship": "primary"
        },
        {
            "date_of_birth": "1958-07-22",
            "relationship": "spouse"
        }
    ],
    "coverage": {
        "sports_rider": true
    },
    "sweep": [
        "plan_max",
        "plan_ded"
    ]
}'
Response Response Example
200 - plan_max × plan_ded matrix
{
    "success": true,
    "data": {
        "sweep": [
            "plan_max",
            "plan_ded"
        ],
        "applied_options": {
            "sports_rider": true
        },
        "options": {
            "plan_max": [
                75000,
                150000,
                250000,
                300000,
                500000,
                1000000
            ],
            "plan_ded": [
                50,
                100,
                250,
                500,
                1000,
                2500,
                5000
            ]
        },
        "results": [
            {
                "coverage": {
                    "plan_max": "75000",
                    "plan_ded": "50"
                },
                "pricing": {
                    "premium": 28,
                    "fees": 1.96,
                    "taxes": 0,
                    "total": 29.96
                }
            },
            {
                "coverage": {
                    "plan_max": "75000",
                    "plan_ded": "100"
                },
                "pricing": {
                    "premium": 24.5,
                    "fees": 1.72,
                    "taxes": 0,
                    "total": 26.22
                }
            },
            {
                "coverage": {
                    "plan_max": "75000",
                    "plan_ded": "500"
                },
                "pricing": {
                    "premium": 21,
                    "fees": 1.47,
                    "taxes": 0,
                    "total": 22.47
                }
            }
        ]
    }
}
Modified at 2026-05-05 23:26:07
Previous
Rate eligible programs for a risk
Next
List quote folios
Built with