Skip to main content

Quoting Home

Home

/quoting/v3/quotes/home/request

Initiates a home insurance quotes session and triggers the asynchronous quoting process.

See:

Request: HomeQuotesRequest

Response: QuotesRequestResponse

Example POST Request

Consider the following JSON request made via the developer portal:

JSON Post Request
{
"firstName": "Jake",
"lastName": "Ward",
"dateOfBirth": "1990-05-29",
"email": "test@test.com",
"phone": "541 754 3010",
"campaignCode": "MAGIC",
"productData": {
"yearBuilt": "2018",
"squareFootage": "3050",
"address": {
"streetNumber": "1434",
"addressLine1": "Appleton Avenue",
"addressLine2": "",
"apartmentNumber": "6b",
"city": "Orlando",
"county": "Orange County",
"state": "FL",
"zip": "32806"
},
"gender": "Male",
"propertyPurchasedInLastSixMonths": true,
"previousAddress": {
"streetNumber": "1200",
"addressLine1": "Appleton Avenue",
"addressLine2": "",
"apartmentNumber": "",
"city": "Orlando",
"county": "Orange County",
"state": "FL",
"zip": "32806"
},
"propertyDetails": {
"propertyType": "SingleFamily",
"residenceUsage": "PrimaryResidence",
"yearBuilt": "2018",
"squareFootage": "3050",
"roofMaterial": "StandardShingle",
"bedrooms": "2",
"bathrooms": "2",
"marketValue": "125000",
"fireAlarm": "Local",
"burglarAlarm": "CentrallyMonitored",
"gatedCommunity": false
},
"carrier": "Progressive",
"coverageYears": "5",
"rating": "Good"
},
"metadata": {
"TestKey1": "TestValue1",
"TestKey2": "TestValue2"
}
}

This request should produce a response such as:

JSON Response
{
"traceId": "f2cda934-ceae-4352-8081-09a4b8c0db08",
"errors": [],
"payload": {
"quotesCorrelationId": "dd84f950-b6ab-4be4-b0a8-b09f3a68cf1b"
}
}

The property quotesCorrelationId within the payload, contains the identifier used to retrieve any quotes that may have been generated from this endpoint. These are retrieved through the Retrieve Quotes endpoint below.