v1

latestOpenAPI 3.0.12026-07-2683220192.3 KB
Orders

Create Multiple Orders

Create up to 20 orders in a single request. If any entry fails request-shape validation, the whole batch is rejected by the gateway before reaching the exchange. Per-entry exchange outcomes (accept, fill, reject) are delivered on the order stream, not in this response. createdOrderIds are returned in request order.

post/v1/orders/batched

Request body

Example request

{
  "orders": [
    {
      "price": {
        "value": "123.45"
      },
      "cashOrderQty": {
        "value": "123.45"
      },
      "slippageTolerance": {
        "currentPrice": {
          "value": "123.45"
        }
      }
    }
  ]
}

Response

Orders created successfully

createdOrderIdsstring[]

Exchange-assigned order IDs, in request order.