Endpoint
Request
Response
Order Status
Polling
Poll every 30-60 seconds for updates. Stop when status isdelivered, cancelled, or failed.
Errors
Order Not Found:Error Reference
View all error codes
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve order status and tracking
GET /v1/orders/{order_id_or_number}
curl https://api.sp3ndpay.shop/v1/orders/SP3ND-184920 \
-H "Authorization: Bearer sp3ndpay_live_xxx"
{
"order": {
"id": "ord_8nJ42rA",
"number": "SP3ND-184920",
"status": "shipped",
"total": 109.27,
"payment_status": "confirmed",
"created_at": "2026-05-04T18:30:00Z",
"tracking": {
"current_step": "shipped",
"carrier": "USPS",
"tracking_number": "9400111899562843567890",
"estimated_delivery": "2026-05-08",
"steps": [
{"name": "created", "completed": true, "timestamp": "2026-05-04T18:30:00Z"},
{"name": "paid", "completed": true, "timestamp": "2026-05-04T18:35:00Z"},
{"name": "ordered", "completed": true, "timestamp": "2026-05-04T19:15:00Z"},
{"name": "shipped", "completed": true, "timestamp": "2026-05-05T14:20:00Z"},
{"name": "delivered", "completed": false, "timestamp": null}
]
}
}
}
| Status | Description |
|---|---|
created | Waiting for payment |
paid | Payment confirmed |
ordered | Product sourced |
shipped | In transit |
delivered | Arrived |
delivered, cancelled, or failed.
{
"error": {
"code": "order_not_found",
"message": "No order with specified ID"
}
}