Place Order
Place Order
POSThttps://api.gemini.com/v1/prediction-markets/order
Place a new prediction market limit order. Currently only limit orders are supported.
POST
curl --request POST \
--url https://api.gemini.com/v1/prediction-markets/order \
--header 'Content-Type: application/json' \
--header 'X-GEMINI-APIKEY: <string>' \
--header 'X-GEMINI-PAYLOAD: <string>' \
--header 'X-GEMINI-SIGNATURE: <string>' \
--data '
{
"symbol": "GEMI-FEDJAN26-DN25",
"orderType": "limit",
"side": "buy",
"quantity": "100",
"price": "0.65",
"outcome": "yes",
"timeInForce": "good-til-cancel"
}
'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
Order created successfully
Last modified on