GET
/
orders
/
{orderId}
Get order status
curl --request GET \
  --url https://api.henrylabs.ai/v0/orders/{orderId} \
  --header 'x-api-key: <api-key>' \
  --header 'x-user-id: <api-key>'
{
  "success": true,
  "status": "<string>",
  "message": "<string>",
  "data": {
    "id": "<string>",
    "userId": "<string>",
    "totalAmount": "<string>",
    "status": "<string>",
    "currency": "<string>"
  }
}
This endpoint allows you to retrieve comprehensive details for a single order by providing the orderId.

Authorizations

x-api-key
string
header
required
x-user-id
string
header
required

Path Parameters

orderId
string<uuid>
required

Order ID

Response

200
application/json

Order status retrieved successfully

The response is of type object.