Prerequisites
Before you start, make sure you have:- Session token: A valid session token. See the Authentication guide to learn how to obtain one.
- Order ID: The unique integer
orderIdreturned when you created the order. Use theGET /orders endpointto find it.
All API examples in this guide use
${BASE_URL} as a placeholder. Replace it with the correct base URL configured for the correct environment. For more information see Environments page.Retrieve order details
To track an order, retrieve its full details using its unique ID via theGET /orders/{orderId} endpoint.
A successful request returns a 200 OK status. The response body contains the order’s current state. Focus on two specific sections: the status and the tracking information. Timestamps use the ISO 8601 pattern YYYY-MM-DDTHH:mm:ssZ in Coordinated Universal Time UTC.
- Request
- Response
Use this request to retrieve the current status and tracking information for a specific order:
Where to go next
Now that you can track orders, you can continue with these guides:Manage Returns
Generate return labels and track returned items when customers need to send products back.
Manage Webhooks
Automate order tracking by setting up webhooks to receive real-time status updates.