Now in beta

Ship freight with a single API

Quote, book, track, and manage LTL freight shipments programmatically. RESTful API with JSON responses, cursor-based pagination, and webhook events.

Get a freight quote
curl -X POST https://api.freightcake.com/api/v1/quotes \
  -H "Authorization: Bearer fk_test_..." \
  -H "Content-Type: application/json" \
  -d '{
    "origin": { "zip": "90210" },
    "destination": { "zip": "10001" },
    "items": [{
      "weight": 500,
      "class": "85",
      "description": "Machine parts"
    }]
  }'