Skip to main content
GET
/
carriers
Get Carriers
curl --request GET \
  --url https://sandbox.axle.insure/carriers \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "state-farm",
      "name": "State Farm",
      "domain": "www.statefarm.com",
      "address": {
        "addressLine1": "One State Farm Plaza",
        "addressLine2": null,
        "city": "Bloomington",
        "state": "IL",
        "postalCode": "61710",
        "country": null
      },
      "phone": "+18007828332",
      "naicCodes": [
        "25178",
        "25143",
        "36351"
      ],
      "logoUrl": "https://example.com/state-farm.svg",
      "modifiedAt": "2023-04-04T19:27:55.523Z"
    },
    {
      "id": "progressive",
      "name": "Progressive",
      "domain": "www.progressive.com",
      "address": {
        "addressLine1": "6300 Wilson Mills Rd",
        "addressLine2": null,
        "city": "Mayfield Village",
        "state": "OH",
        "postalCode": "44143",
        "country": null
      },
      "phone": "+18005551234",
      "naicCodes": [
        "24260",
        "10193",
        "16322"
      ],
      "logoUrl": "https://example.com/progressive.svg",
      "modifiedAt": "2023-04-04T19:27:55.523Z"
    }
  ]
}

Authorizations

x-client-secret
string
header
required

Your secret API key. This will be shared with you during onboarding and should be considered sensitive - it’s a password after all! Your secret will be matched with your client ID to authenticate your requests.

Headers

x-client-id
string
required

Your client ID. This will be shared with you during onboarding.

Response

success
boolean

Indicates whether the operation was performed successfully.

Example:

true

data
Carrier · object[]