Execute Instant Order
POSThttps://api.gemini.com/v1/instant/execute
Executes a previously issued instant quote. The symbol, side, quantity, price, fee, and quoteId must all match the values returned by Get Instant Quote.
POST
curl --request POST \
--url https://api.gemini.com/v1/instant/execute \
--header 'Content-Type: application/json' \
--header 'X-GEMINI-APIKEY: <string>' \
--header 'X-GEMINI-PAYLOAD: <string>' \
--header 'X-GEMINI-SIGNATURE: <string>' \
--data '
{
"request": "/v1/instant/execute",
"nonce": "<nonce>",
"symbol": "BTCUSD",
"side": "buy",
"quantity": "0.01505181",
"price": "6445.07",
"fee": "2.9900309233",
"quoteId": 1328
}
'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:create assigned to access this endpoint. See OAuth Scopes for more information.
Headers
Request Body
Responses
JSON response
Last modified on