Order by id
Retrieve detailed information about a particular order.
Request
curl -X GET "https://trade.mudrex.com/fapi/v1/futures/orders/{order_id}" \
-H "X-Authentication: your-secret-key"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
order_id | string | Yes | The unique identifier of the order (path parameter) |
Response
{
"success": true,
"data": {
"created_at": "2025-10-08T11:41:01Z",
"updated_at": "2025-10-08T11:41:01Z",
"reason": {
"message": "OK"
},
"actual_amount": 222.8,
"desired_amount": 0,
"quantity": 0.05,
"filled_quantity": 0,
"price": 4456,
"filled_price": 0,
"leverage": 80.9,
"liquidation_price": 0,
"order_type": "LONG",
"trigger_type": "LIMIT",
"status": "CREATED",
"id": "0199c39f-e866-7d6b-947e-ed2f09c90b8e",
"asset_uuid": "018f7643-129c-7ca6-bb89-3be0e5ee94ae",
"symbol": "ETHUSDT"
}
}Parameters
| Parameter | Description |
|---|---|
id | Order ID (UUID) |
created_at | Timestamp when the order was created |
updated_at | Timestamp when the order was last updated |
reason | Reason object containing message (can be null) |
actual_amount | Actual amount used for the order |
desired_amount | Desired amount for the order |
quantity | Order quantity |
filled_quantity | Quantity that has been filled |
price | Order price |
filled_price | Average price at which the order has been filled |
leverage | Leverage used for the order |
liquidation_price | Liquidation price for the position |
order_type | Type of order: LONG, SHORT, or TAKEPROFIT |
trigger_type | Trigger type: MARKET or LIMIT |
status | Order status (e.g., CREATED, FILLED) |
asset_uuid | UUID of the asset |
symbol | Trading symbol (e.g., "ETHUSDT") |
Common errors
Order not found
{
"success": false,
"errors": [
{
"code": 404,
"text": "order not found"
}
]
}Status: 404 Not Found
Updated 22 days ago
