Skip to main content
GET
/
api
/
accounts
/
{accountId}
/
router
/
quote
Get Router Quote
curl --request GET \
  --url https://trade.predexon.com/api/accounts/{accountId}/router/quote \
  --header 'x-api-key: <api-key>'
{
  "predexonId": "<string>",
  "title": "<string>",
  "outcome": "<string>",
  "requestedAmount": "<string>",
  "requestedSize": "<string>",
  "venues": [
    {
      "venue": "<string>",
      "hasPosition": true,
      "positionSize": "<string>",
      "bestPrice": "<string>",
      "estimatedFillPrice": "<string>",
      "estimatedFillSize": "<string>",
      "availableLiquidity": "<string>",
      "feeBpsAtTop": 123
    }
  ],
  "summary": {
    "estimatedAvgPrice": "<string>",
    "estimatedTotalSize": "<string>",
    "venueBreakdown": [
      {
        "venue": "<string>",
        "size": "<string>",
        "price": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.predexon.com/llms.txt

Use this file to discover all available pages before exploring further.

The Order Router groups outcomes from different venues under a single canonical predexon_id. This endpoint projects how an order would fill across every venue holding that outcome — per-venue depth, fee-adjusted price, and an overall fill estimate. Use it before Place Order to sanity-check expected fill and slippage. The response is a snapshot of the order books at quote time — actual fills depend on the books when the order runs.

Authorizations

x-api-key
string
header
required

Path Parameters

accountId
string
required

Query Parameters

predexonId
string
required
side
enum<string>
required
Available options:
buy,
sell
amount
number

USD notional. Required when side=buy.

size
number

Share count. Required when side=sell.

Response

Quote

predexonId
string
title
string | null
outcome
string | null
side
enum<string>
Available options:
buy,
sell
requestedAmount
string | null
requestedSize
string | null
venues
object[]

Per-venue projection. Only venues with a current quote are listed.

summary
object