paradex_order_status
Track and verify the status of specific orders on the Paradex platform. Confirm acceptance, check fills, diagnose issues, and monitor execution details for precise order lifecycle analysis.
Instructions
Check the detailed status of a specific order for execution monitoring.
Use this tool when you need to:
- Confirm if a particular order was accepted and is active
- Check if an order has been filled, partially filled, or canceled
- Get execution details for a specific order
- Diagnose issues with order placement
- Track the status of important orders individually
Order status tracking is essential for verifying execution status
and troubleshooting any issues with specific orders.
Example use cases:
- Checking if a recently placed limit order is active in the book
- Verifying fill details of a specific order
- Determining why an order might have been rejected
- Confirming cancellation status of an order you attempted to cancel
- Getting execution timestamps for order lifecycle analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | Client-specified order ID. | |
order_id | Yes | Order identifier. |
Input Schema (JSON Schema)
{
"properties": {
"client_id": {
"description": "Client-specified order ID.",
"title": "Client Id",
"type": "string"
},
"order_id": {
"description": "Order identifier.",
"title": "Order Id",
"type": "string"
}
},
"required": [
"order_id",
"client_id"
],
"title": "get_order_statusArguments",
"type": "object"
}