> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise.predexon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Quote

> Preview the routing decision and estimated fill before placing an order

```http theme={null}
POST /v1/accounts/{accountId}/quote
```

Preview the routing decision, estimated fill, and total fee before placing an order. Quote shape mirrors [Place Order](/ledger/api-reference/orders/place-order) — same fields, same conditional rules.

**Request**

```json theme={null}
{
  "predexonId": "px-abc123def456",
  "side": "buy",
  "type": "market",
  "amount": 50.00
}
```

**Response**

```json theme={null}
{
  "estimatedFilled": "100",
  "estimatedAveragePrice": "0.495",
  "estimatedNotional": "49.50",
  "estimatedFee": "0.50",
  "metadata": {
    "fills": [
      { "source": "venue", "venue": "polymarket", "size": "50", "price": "0.50", "fee": "0.25" },
      { "source": "venue", "venue": "limitless", "size": "50", "price": "0.49", "fee": "0.25" }
    ]
  },
  "expiresAt": "2026-05-06T12:00:30Z"
}
```

If liquidity is insufficient, `estimatedFilled` reflects only the executable portion. Quotes are non-binding and expire — actual fills may differ if liquidity moves between quote and order placement.
