Van freight API
Cargo vans handle shipments up to 4 pallets. Best for last mile, same day, and residential deliveries. Dry freight only. Quote with 5 fields.
Required fields
- origin_zip -- 5 digit US zip code
- destination_zip -- 5 digit US zip code
- pallets -- number of pallets (1 to 4)
- weight_lbs_per_pallet -- weight per pallet in pounds
- pickup_date -- requested pickup date (YYYY-MM-DD)
curl example
curl -X POST https://wearewarp.com/api/v1/van/quote \
-H "Authorization: Bearer wk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"origin_zip": "90001",
"destination_zip": "10001",
"pallets": 2,
"weight_lbs_per_pallet": 800,
"pickup_date": "2026-04-14"
}'MCP tool call
{
"tool": "warp_van_quote",
"args": {
"origin_zip": "90001",
"destination_zip": "10001",
"pallets": 2,
"weight_lbs_per_pallet": 800,
"pickup_date": "2026-04-14"
}
}CLI example
warp-agent van quote 90001 10001 --pallets 2 --weight 800 --date 2026-04-14Response
{
"quote_id": "wq_...",
"lane_id": "ln_900_100",
"mode": "van",
"price_usd": 1850.00,
"currency": "USD",
"transit_days": 5,
"pickup_date": "2026-04-14",
"delivery_date": "2026-04-19",
"expires_at": "2026-04-11T15:30:00Z",
"quote_tier": "firm",
"service": {
"type": "dry",
"accessorials_waived": ["liftgate", "residential", "appointment", "limited_access"]
},
"missing_for_ship": [],
"booking_url": "https://wearewarp.com/agents/book/wq_...",
"book_tool_call": {
"tool": "warp_book",
"args": { "quote_id": "wq_..." }
}
}