Loading…
Pull real-time status updates for any ShipyBox shipment with a single REST call.
Use the tracking API to fetch real-time status updates for any shipment booked through ShipyBox.
GET /v1/track/{awb_number}
curl https://api.shipybox.com/v1/track/SBX78234112 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"awb": "SBX78234112",
"courier": "Delhivery",
"current_status": "Out for delivery",
"current_location": "Bengaluru DC",
"expected_delivery": "2026-01-12",
"history": [
{ "status": "Picked up", "at": "2026-01-09T11:24:00+05:30", "location": "Mumbai" },
{ "status": "In transit", "at": "2026-01-10T08:14:00+05:30", "location": "Pune Hub" }
]
}
For up to 100 AWBs in one call:
POST /v1/track/bulk
{ "awbs": ["SBX78234112", "SBX78234113"] }