v1

latestOpenAPI 3.0.0ISC2026-07-26318688.6 KB
Quotes

Beta - Multi Quotes

Returns a candidate array per order, mirroring the candidate resolution the multi-exchange create flow runs — CEX STANDARD + private two-leg, no DEX.

post/quotes/multi

Request body

mode'all' | 'single'

Controls how many of the submitted orders are individually quoted.

  • all (default): every order is quoted and returns its own array of candidate routes.
  • single: only the first order is quoted; the remaining orders come back with quoted: false and no candidates — a lighter, faster preview for when quoting the whole batch is too slow.
batchedboolean

Resolve distinct order tuples concurrently (bounded) when true (default), or sequentially when false. POC knob for latency benchmarking.

Example request

{
  "orders": [
    {
      "from": "6689b73ec90e45f3b3e51564",
      "to": "6689b73ec90e45f3b3e51558"
    }
  ]
}

Response

Success

mode'all' | 'single' required

Controls how many of the submitted orders are individually quoted.

  • all (default): every order is quoted and returns its own array of candidate routes.
  • single: only the first order is quoted; the remaining orders come back with quoted: false and no candidates — a lighter, faster preview for when quoting the whole batch is too slow.
batchedboolean required