Get Order
#GET /orders/{order_id}
Fetch the current state of an order. Use it as a fallback/reconciliation method — webhooks are the primary notification channel.
| Method | GET |
| URL | https://api.boostigo.io/orders/{order_id} |
| Auth | Authorization: Bearer YOUR_API_KEY |
| Scope | Only orders of your own store are visible. Other orders return 404 ORDER_NOT_FOUND. |
curl --request GET \
"https://api.boostigo.io/orders/BST-LKE-8F72A19X" \
--header "Authorization: Bearer YOUR_API_KEY" \
--header "Accept: application/json"
#Processing
{
"success": true,
"data": {
"order_id": "BST-LKE-8F72A19X", "request_id": "ORDER-CLIENT-10001", "platform": "likee",
"likee_id": "1137852558", "likee_uid": "1278112264", "diamond": 5000, "amount": "95.00", "currency": "USD",
"status": "processing",
"created_at": "2026-09-07T12:30:00Z", "updated_at": "2026-09-07T12:30:03Z"
}
}
#Success
{
"success": true,
"data": {
"order_id": "BST-LKE-8F72A19X", "request_id": "ORDER-CLIENT-10001", "platform": "likee",
"likee_id": "1137852558", "likee_uid": "1278112264", "diamond": 5000, "amount": "95.00", "currency": "USD",
"status": "success",
"created_at": "2026-09-07T12:30:00Z", "updated_at": "2026-09-07T12:30:09Z", "completed_at": "2026-09-07T12:30:09Z"
}
}
#Failed
{
"success": true,
"data": {
"order_id": "BST-LKE-8F72A19X", "request_id": "ORDER-CLIENT-10001", "platform": "likee",
"likee_id": "1137852558", "likee_uid": "1278112264", "diamond": 5000, "amount": "95.00", "currency": "USD",
"status": "failed",
"error": { "code": "RECHARGE_FAILED", "message": "Recharge could not be completed." },
"created_at": "2026-09-07T12:30:00Z", "updated_at": "2026-09-07T12:30:15Z"
}
}
success: true here means the lookup succeeded; the order itself is failed and its amount was refunded to your API key.
#Errors
| HTTP | code |
|---|---|
| 404 | ORDER_NOT_FOUND |
| 401 / 403 / 429 | see Authentication |
Timestamps are ISO-8601 UTC (2026-09-07T12:30:00Z).