Carriers
Get Carriers
The Get Carriers method returns an array of Carrier objects which include additional details about Axle-supported insurance carriers.
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
requiredYour client ID. This will be shared with you during onboarding.
x-client-secret
string
requiredYour 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.
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
}