added

Additional Vehicle Data Available

We have now exposed annualized_mileage, garaging_address, and primary_usage to our get_policy endpoint!

What's Changed

When a GET is called to the bind_api/v3/policies/policy/{policy_id} endpoint, each vehicle object will contain additional fields.

Note: this data has the potential of being null and may not exist on quotes bound before February 14, 2025.

A truncated example output is below:

{
  "policy": {
    ...,
    "vehicles": [
      {
        "annualizedMileage": 10000,
        "garagingAddress":{
          "address1": "123 Main Street",
          "address2": null,
          "city": "Columbus",
          "state": "OH",
          "zip": "43210"
        },
        "primaryUsage": "pleasure",
        ...
      }
    ],
    ...
  },
  ...
}

How to use it

No further configuration is required! All consumers of v3 get policy endpoint will receive this extra data.