Skip to main content
GET
/
policies
/
{id}
Get Policy
curl --request GET \
  --url https://sandbox.axle.insure/policies/{id} \
  --header 'x-access-token: <x-access-token>' \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <api-key>'
{
  "success": true,
  "data": {
    "id": "pol_CbxGmGWnp9bGAFCC-eod2",
    "account": "acc_gM2wn_gaqUv76ZljeVXOv",
    "type": "auto",
    "carrier": "state-farm",
    "policyNumber": "123456789",
    "isActive": true,
    "effectiveDate": "2022-10-22T04:00:00.000Z",
    "expirationDate": "2023-10-22T04:00:00.000Z",
    "premium": 999.99,
    "address": {
      "addressLine1": "123 Fake St.",
      "addressLine2": "Unit 456",
      "city": "Atlanta",
      "state": "Georgia",
      "postalCode": "30315",
      "country": "USA"
    },
    "coverages": [
      {
        "code": "BI",
        "label": "Bodily Injury",
        "limitPerPerson": 250000,
        "limitPerAccident": 500000
      },
      {
        "code": "PD",
        "label": "Property Damage",
        "limitPerAccident": 100000
      },
      {
        "code": "COMP",
        "label": "Comprehensive",
        "deductible": 375,
        "property": "prp_uSdzLVpi8c76H7kl6AQ-F"
      },
      {
        "code": "COLL",
        "label": "Collision",
        "deductible": 375,
        "property": "prp_uSdzLVpi8c76H7kl6AQ-F"
      },
      {
        "code": "UMBI",
        "label": "Uninsured Bodily Injury",
        "limitPerPerson": 100000,
        "limitPerAccident": 300000,
        "property": "prp_uSdzLVpi8c76H7kl6AQ-F"
      }
    ],
    "properties": [
      {
        "id": "prp_uSdzLVpi8c76H7kl6AQ-F",
        "type": "vehicle",
        "data": {
          "vin": "SMTD44GN3HT812287",
          "model": "CR-V",
          "year": "2017",
          "make": "HONDA",
          "use": "pleasure"
        }
      }
    ],
    "insureds": [
      {
        "firstName": "Armaan",
        "lastName": "Sikand",
        "dateOfBirthYear": "1993",
        "licenseNo": "•••••7259",
        "licenseState": "GA",
        "dateOfBirth": null,
        "type": "primary"
      }
    ],
    "thirdParties": [
      {
        "name": "Super Leasing Trust",
        "type": "lessor",
        "address": {
          "addressLine1": "Po Box 105205",
          "state": "GA",
          "city": "Atlanta",
          "postalCode": "30348"
        }
      }
    ],
    "documents": [
      {
        "source": "carrier",
        "name": "Declaration Page",
        "type": [
          "declaration-page"
        ],
        "url": "<signed-url>",
        "id": "doc_jd73dw6fn02sj28.pdf",
        "issuedDate": "2022-01-01T00:00:00.000Z",
        "effectiveDate": "2022-01-02T00:00:00.000Z",
        "createdAt": "2022-01-01T00:00:00.000Z"
      }
    ],
    "createdAt": "2022-01-01T00:00:00.000Z",
    "modifiedAt": "2022-01-01T00:00:00.000Z",
    "refreshedAt": "2022-01-01T00:00:00.000Z"
  }
}

Authorizations

x-client-secret
string
header
required

Headers

x-client-id
string
required
x-destination-client-id
string
x-access-token
string
required

Path Parameters

id
string
required

Query Parameters

expand
enum<string>
Available options:
true,
false

Response

success
boolean
Example:
data
object