Get Order Status
Get Order Status
POSThttps://api.gemini.com/v1/order/status
Get the status for an order.
Note
Gemini recommends using our WebSocket Order Events API to receive order status changes. It's much better because you'll be notified of order status changes as they happen.
Under the terms of the Gemini API Agreement, polling this endpoint may be subject to rate limiting.
Enabled for perpetuals accounts from July 10th, 0100hrs ET onwards. Trade info for all perpetuals orders submitted prior to this timing, will not be available through this API.
POST
curl --request POST \
--url https://api.gemini.com/v1/order/status \
--header 'Content-Type: application/json' \
--header 'X-GEMINI-APIKEY: <string>' \
--header 'X-GEMINI-PAYLOAD: <string>' \
--header 'X-GEMINI-SIGNATURE: <string>' \
--data '
{
"request": "/v1/order/status",
"nonce": "<nonce>",
"order_id": 123456789012345,
"include_trades": true
}
'Roles
The API key you use to access this endpoint must have the Trader role assigned. See Roles for more information.
The OAuth scope must have orders:read assigned to access this endpoint. See OAuth Scopes for more information.
Headers
Request Body
Responses
The order status
Last modified on