GET
/
carriers
Header
curl --request GET \
  --url https://api.axle.insure/carriers \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <x-client-secret>'
{
  "data": [
    {
      "address": {
        "addressLine1": "123 Fake St.",
        "addressLine2": "Unit 456",
        "city": "Atlanta",
        "country": "USA",
        "postalCode": "30315",
        "state": "Georgia"
      },
      "domain": "<string>",
      "id": "<string>",
      "logoUrl": "<string>",
      "modifiedAt": "<string>",
      "name": "<string>",
      "phone": "<string>"
    }
  ],
  "success": true
}

Headers

x-client-id
string
required

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

x-client-secret
string
required

Your secret API key. This will be shared with you during onboarding and should be considered sensitive - it’s a password after all!

Response

200 - application/json
data
object[]
success
boolean

Indicates whether the operation was performed successfully.