Skip to main content
GET
/
v1
/
orders
/
{orderId}
/
status-history
Get Order Status History
curl --request GET \
  --url https://api.chessa.ai/v1/orders/{orderId}/status-history
{
  "currentStatus": "completed",
  "history": [
    {
      "checked": true,
      "description": "Your order has been created",
      "status": "created",
      "timestamp": "2025-03-18T06:09:17.832Z"
    },
    {
      "checked": true,
      "description": "Your order is ready to be funded. Please send funds to the provided address",
      "status": "waiting_for_funding",
      "timestamp": "2025-03-18T06:09:28.996Z"
    },
    {
      "checked": true,
      "description": "Detected incoming payment",
      "status": "waiting_for_confirmations",
      "timestamp": "2025-03-18T06:10:12.517Z"
    },
    {
      "checked": true,
      "description": "Your payment was confirmed",
      "status": "funds_received",
      "timestamp": "2025-03-18T06:10:13.216Z"
    },
    {
      "checked": true,
      "description": "We are processing your payout",
      "status": "processing_payout",
      "timestamp": "2025-03-18T06:10:13.859Z"
    },
    {
      "checked": true,
      "description": "Order is complete, and funds have been delivered successfully",
      "status": "completed",
      "timestamp": "2025-03-18T06:10:20.150Z"
    }
  ]
}

Headers

x-client-id
string
Example:

""

x-client-secret
string
Example:

""

Response

Success Response

currentStatus
string
Example:

"completed"

history
object[]
Example:
[
{
"checked": true,
"description": "Your order has been created",
"status": "created",
"timestamp": "2025-03-18T06:09:17.832Z"
},
{
"checked": true,
"description": "Your order is ready to be funded. Please send funds to the provided address",
"status": "waiting_for_funding",
"timestamp": "2025-03-18T06:09:28.996Z"
},
{
"checked": true,
"description": "Detected incoming payment",
"status": "waiting_for_confirmations",
"timestamp": "2025-03-18T06:10:12.517Z"
},
{
"checked": true,
"description": "Your payment was confirmed",
"status": "funds_received",
"timestamp": "2025-03-18T06:10:13.216Z"
},
{
"checked": true,
"description": "We are processing your payout",
"status": "processing_payout",
"timestamp": "2025-03-18T06:10:13.859Z"
},
{
"checked": true,
"description": "Order is complete, and funds have been delivered successfully",
"status": "completed",
"timestamp": "2025-03-18T06:10:20.150Z"
}
]