Get Routing Recommendation
Trading
Get Routing Recommendation
Fetches the current best exchange and price for a symbol without executing a trade.
GET
Get Routing Recommendation
Fetches the current best exchange and price for a symbol without executing a trade. The response shows which exchange currently offers the best price along with alternative venues and pricing context.
Features
- Real-time insights: Surface the venue offering the best bid or ask instantly
- Contextual pricing: Includes savings metrics and alternative venue pricing
- Configurable direction: Toggle BUY or SELL recommendations via query params
- Credential-free: Preview routing outcomes without submitting trade credentials
Use Cases
- Power pre-trade analytics or UI previews before executing a position
- Monitor venue spreads to decide when to re-route algorithmic order flow
- Feed routing data into risk systems to anticipate liquidity constraints
- Provide traders with transparency on venue selection logic in dashboards
Request
- Method:
GET - Endpoint:
/api/trade/routing/{symbol} - Path Parameter:
symbol(e.g.,BTC,ETH,SOL) - Query Parameter:
side(required) -BUYorSELL
Example Request
Success Response
Response Fields
| Field | Type | Description |
|---|---|---|
symbol | string | Asset symbol passed in the request |
side | string | BUY or SELL |
routing.recommended | string | Exchange that currently offers the best execution |
routing.price | number | Best execution price |
routing.reason | string | Why the exchange was selected |
routing.savings | number | Estimated savings (in quote asset) compared to next-best venue |
routing.savingsPercent | number | Percent improvement over alternatives |
routing.alternatives | object | Pricing details for each supported exchange |
Error Responses
404 Not Found - No Routing Data
Authorizations
API key for authentication. Also requires X-API-SECRET, X-API-TIMESTAMP, and X-API-SIGNATURE headers for private endpoints.
Path Parameters
Asset symbol (e.g., BTC, ETH)
Example:
"BTC"
Query Parameters
Order side (BUY or SELL)
Available options:
BUY, SELL