v1

latestOpenAPI 3.0.32026-07-26170311887.2 KB
Insurance

Create an Insurance Quote

Regional availability: This endpoint is currently only available for US entities. Support for additional regions will be available in a future release.

Create an insurance quote for products to be shipped. Returns a quote with fee calculations per product and an overall total. The quote is valid for 48 hours and can be converted to a policy using the Create Insurance Policy from Quote endpoint.

Required authorization scope: public.insurance_quote:write

post/2024-09/insurances/quotes

Request body

Example request

{
  "quote": {
    "currency": "USD",
    "products": [
      {
        "currency": "USD"
      }
    ]
  }
}

Response

Insurance quote successfully created

Example response

{
  "insurance_quote": {
    "insurance_fee_currency": "USD",
    "products": [
      {
        "insured_currency": "USD"
      }
    ]
  }
}