curl --request GET \
--url https://api.wava.co/v1/orders/{orderId} \
--header 'merchant-key: <api-key>'{
"data": {
"id_order": 12345,
"id_external": "order-12345",
"purchase_date": "2025-01-18T10:30:00.000Z",
"status": "confirmed",
"total": 50000,
"currency": "COP"
}
}Retrieve details for a specific order including current status, payment information, and timestamps.
Use this endpoint to:
curl --request GET \
--url https://api.wava.co/v1/orders/{orderId} \
--header 'merchant-key: <api-key>'{
"data": {
"id_order": 12345,
"id_external": "order-12345",
"purchase_date": "2025-01-18T10:30:00.000Z",
"status": "confirmed",
"total": 50000,
"currency": "COP"
}
}Merchant key for store identification. Required for all API requests.
merchant-key: YOUR_MERCHANT_KEYUnique order identifier returned from order creation.
x >= 112345
Order details retrieved successfully
Show child attributes