FreightCake
API Reference

Carriers

API reference for listing available carriers.

List Carriers

GET /v1/carriers

Returns the list of carriers configured for your organization.

Response

{
  "object": "list",
  "url": "/v1/carriers",
  "data": [
    {
      "object": "carrier",
      "id": 1,
      "name": "R+L Carriers",
      "scac": "RLCA",
      "active": true,
      "services": ["LTL"],
      "capabilities": {
        "quoting": true,
        "booking": true,
        "tracking": true
      }
    }
  ],
  "has_more": false
}

Retrieve Carrier

GET /v1/carriers/:id

Returns details for a specific carrier.

On this page