Customers can use the lookup form above. Developers can use these endpoints or the MCP tool for order-tracking automation.
Look up all shipments associated with an email address
// Response (truncated)
{
"results": 2,
"shipments": [
{
"order_number": "12345",
"tracking_number": "1Z999AA1012345",
"carrier": "UPS",
"order_date": "2026-02-01",
"events": [ ... ]
}
]
}
Look up shipment status by order number
curl "https://www.deerso.com/api/tracking?order_number=12345"
// Response (truncated)
{
"results": 1,
"shipments": [
{
"order_number": "12345",
"tracking_number": "1Z999AA1012345",
"carrier": "UPS",
"events": [
{
"description": "Delivered",
"city_locality": "Portland",
"state_province": "OR"
}
]
}
]
}
Narrow results with both email and order number
Track shipments from any MCP-compatible AI assistant
track_shipment({ email: "
[email protected]" })
track_shipment({ order_number: "12345" })