Execute a specific quote

SecurityBearerAuth
Request
Request Body schema: application/json
side
string <uuid>

Required if you specified side = TWO_WAY when you requested the quote. Indicates whether to BUY or SELL the baseAsset. Allowed values are BUY and SELL.

Enum: "BUY" "SELL"
quoteId
required
string <uuid>

Unique ID associated with a quote.

Responses
200
400

Bad request

403

Forbidden

404

Not found

500

Internal server error

post/quotes/execute
Request samples
application/json
{
  • "quoteId": "fd5dbe64-a96e-4e1c-9843-75cd6b0cdb60"
}
Response samples
application/json
{
  • "tradeId": "065e2c46-be89-4fe2-9d16-ce9afeca50b7",
  • "price": "62289.42",
  • "baseAsset": "BTC",
  • "quoteAsset": "USD",
  • "baseAssetQty": "1.00000000",
  • "quoteAssetQty": "62289.42",
  • "side": "BUY",
  • "endUserGuid": "669ce446-22d0-11ec-9621-0242ac130002",
  • "timestamp": "2021-01-01T01:05:30.000Z",
  • "quoteId": "fd5dbe64-a96e-4e1c-9843-75cd6b0cdb60",
  • "fundSource": "FUNDED"
}