v3

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-10184967.1 KB
Quote & Save V2

Get multi-quote by group hash

Retrieves all quotes in a multi-quote group using the group hash.

get/v2/quote/multi/{groupHash}

Path parameters

groupHashstring required

Headers

Authorizationstring

Bearer token

Response

The multi-quote has been successfully retrieved.

groupHashstring

The group_hash linking all quotes

isCompletedboolean

Whether the group was purchased

Example response

{
  "quotes": [
    {
      "quote": {
        "currentPrice": 100.24,
        "coverageOptions": {
          "petOption": {
            "price": 100.24
          },
          "trcOption": {
            "price": 100.24
          },
          "cfarOption": {
            "price": 100.24
          },
          "cfwrOption": {
            "price": 100.24
          },
          "adventureOption": {
            "price": 100.24
          },
          "vacationRentalOption": {
            "price": 100.24
          },
          "carRentalOption": {
            "price": 100.24,
            "pricePerCarPerDay": 100.24
          },
          "medicalUpgrade": {
            "price": 100.24
          }
        },
        "quoteHash": "abc123def456"
      }
    }
  ]
}