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

Authorizations

x-client-secret
string
headerrequired

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.

Path Parameters

id
string
required

The unique ID for the requested carrier. Returned in Account and Policy objects as carrier.

Response

200 - application/json
success
boolean

Indicates whether the operation was performed successfully.

data
object