API Reference
Carriers
API reference for listing available carriers.
List Carriers
GET /api/v1/carriers
Returns the FreightCake carrier directory.
Response
{
"object": "list",
"url": "/api/v1/carriers",
"data": [
{
"object": "carrier",
"id": 1,
"name": "R+L Carriers",
"scac": "RLCA",
"contact": "Customer Service",
"phone": "800-543-5589",
"email": null,
"created_at": "2026-07-01T00:00:00.000Z"
}
],
"has_more": false
}Retrieve Carrier
GET /api/v1/carriers/:id
Returns details for a specific carrier.
Errors
| Status | When |
|---|---|
404 | The carrier ID does not exist |
See Handle API Errors for the common error envelope and retry guidance.