Get Marketplace Shipment Tracking Information Run in API Explorer
Retrieve comprehensive tracking information for a marketplace shipment including status, location, POD/BOL availability, and timeline events. This endpoint provides real-time shipment tracking data for customer-facing applications.
GET
/api/external/hub/v1/marketplace_shipments/{id}/tracking
curl \
--request GET 'http://localhost:3001/api/external/hub/v1/marketplace_shipments/FBA15HDDV811/tracking'
Response examples (200)
{
"shipment_id": "FBA15HDDV811",
"fba_shipment_id": "FBA15HDDV811",
"marketplace_name": "Amazon Fulfillment Center",
"unit_count": 150,
"pro_number": "PRO123456",
"estimated_arrival": "2025-06-27T10:00:00Z",
"carton_count": 25,
"pod_exists": true,
"bol_exists": true,
"current_status": {
"status": "in_transit",
"status_time": "2025-09-15T16:23:32.700Z",
"location": "WAREHOUSE_A"
},
"statuses": {
"created": {
"status_change_time": "2025-06-25T08:00:00Z",
"location": "WAREHOUSE_A"
},
"in_transit": {
"status_change_time": "2025-06-26T08:00:00Z",
"location": "WAREHOUSE_A",
"data_missing": false,
"events": [
{
"event_type": "departed",
"location": "WAREHOUSE_A",
"timestamp": "2025-06-26T08:00:00Z",
"description": "Shipment departed from origin warehouse"
}
]
},
"checked_in": {
"status_change_time": "2025-06-27T09:30:00Z",
"location": "FC_B",
"units_received": 150,
"cartons_received": 25,
"units_total": 150,
"cartons_total": 25
},
"receiving": {
"status_change_time": "2025-06-27T10:00:00Z",
"location": "FC_B",
"units_received": 148,
"cartons_received": 25,
"units_total": 150,
"cartons_total": 25
},
"closed": {
"status_change_time": "2025-06-27T15:00:00Z",
"location": "FC_B",
"units_received": 148,
"cartons_received": 25,
"units_total": 150,
"cartons_total": 25
}
}
}
Response examples (422)
{
"error": "No Shipment Found",
"errors": [
"param is missing or the value is empty: id"
]
}