API documentation for FTL Operations
FTL API (1.0.0)
Languages
Servers
Sandbox Server
https://apitest.drayeasy.com
Production Server
https://api.drayeasy.com
Bodyapplication/jsonrequired
The type of trailer used for the shipment. Must be validated together with trailer_size. Allowed combinations: VAN-53, REEFER-53, FLATBED-48.
Enum"VAN""REEFER""FLATBED"
Example: "VAN"
The size of the trailer used for the shipment. Must be validated together with trailer_type. Allowed combinations: VAN-53, REEFER-53, FLATBED-48.
Enum5348
Example: 53
- Sandbox Serverhttps://apitest.drayeasy.com/api/v2/ftl/quotes
- Production Serverhttps://api.drayeasy.com/api/v2/ftl/quotes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://apitest.drayeasy.com/api/v2/ftl/quotes \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"pickup_zipcode": "90047",
"pickup_city": "Los Angeles",
"pickup_state": "CA",
"destination_zipcode": "SAN BERNARDINO",
"destination_city": "Los Angeles",
"destination_state": "CA",
"pickup_date": "2024-12-31",
"trailer_type": "VAN",
"trailer_size": 53,
"cargo_value": 200000
}'Response
application/json
{ "data": { "rate": { … }, "premium": 6, "quote_number": "FQ260127252631" } }