Get order tracking information Run in API Explorer
Ask AI
Retrieve tracking information for shipped orders within a date range or for a specific order.
GET
/api/external/hub/v1/orders/tracking
curl \
--request GET 'https://api.useshelf.com/api/external/hub/v1/orders/tracking?connect_identifier=string&page=42'
Response examples (200)
[
{
"market_order_id": "string",
"order_status": "string",
"tracking_info": [
{
"shipment_id": 42,
"tracking_carrier": "string",
"tracking_number": "string",
"shipping_method": "string",
"departure_date": "2026-05-04",
"carton_weight": {
"weight": 42.0,
"unit": "string"
},
"freight_charge": {
"amount": 42.0,
"currency": "string"
},
"items_list": [
{
"market_order_item_id": "string",
"sku": "string",
"lots": []
}
]
}
]
}
]