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
/v1/orders/tracking
curl \
--request GET 'https://api.pattern.com/hub/v1/orders/tracking?page=42' \
--header "Authorization: Bearer $ACCESS_TOKEN"
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-04T09:42:00Z",
"warehouse_name": "string",
"carton_weight": {
"weight": 42.0,
"unit": "string"
},
"freight_charge": {
"amount": 42.0,
"currency": "string"
},
"item_list": [
{
"market_order_item_id": "string",
"sku": "string",
"quantity": 42,
"lots": [
{
"quantity": 42,
"lot_id": "string",
"expiration_date": "2026-05-04"
}
]
}
]
}
]
}
]