Get order details
Exchange
Get order details
Returns the canonical state of one order, including status, quantities, replacement linkage, and fills where available. Use this endpoint after create, cancel, replace, timeout, or retry events.
GET
Get order details
Documentation Index
Fetch the complete documentation index at: https://stabyl.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API key. Send it in the X-Api-Key header.
Path Parameters
Public order ID returned by create or list order endpoints.
Response
Order details
Canonical order detail response, including order state and fills where available.
Example:
{
"fills": [
{
"created_at": "2026-01-14T10:31:00Z",
"fee": "0.25",
"fee_currency": "USDT",
"id": "123e4567-e89b-12d3-a456-426614174222",
"price": "1649.50",
"quantity": "25.00"
}
],
"order": {
"avg_fill_price": "1649.50",
"client_order_id": "cli-123",
"created_at": "2026-01-14T10:30:00Z",
"filled_quantity": "50.00",
"id": "123e4567-e89b-12d3-a456-426614174000",
"order_type": "limit",
"pair_id": "USD/NGN",
"price": "1650.00",
"quantity": "100.00",
"replace": {
"replaced_by_order_id": "123e4567-e89b-12d3-a456-426614174111",
"replaces_order_id": null
},
"side": "buy",
"status": "partially_filled",
"time_in_force": "POST_ONLY"
}
}Available options:
success