Rfqs
Get RFQ market data
Returns live strategy-level and per-leg market data for one RFQ.
The response contains the best bid and ask, available quantities, mark price, acceptable price band, and per-leg market data. Decimal values are encoded as strings. Implied-volatility fields are populated for option legs when supplied by the venue.
The RFQ must be visible to the authenticated account and currently available from the venue. Unknown, closed, or inaccessible RFQs return 404 Not Found.
get/rfqs/{rfq_id}/bbo
Path parameters
rfq_idstring required
Paradigm-issued RFQ id
Response
OK
Example response
{
"best_ask_price": "50001",
"best_ask_quantity": "5",
"best_bid_price": "49999",
"best_bid_quantity": "10",
"created_at": 1640995200000,
"legs": [
{
"best_ask_iv": "0.56",
"best_ask_price": "50001",
"best_ask_quantity": "5",
"best_bid_iv": "0.55",
"best_bid_price": "49999",
"best_bid_quantity": "10",
"mark_price": "50000",
"mark_price_iv": "0.55",
"market": "BTC-USD-PERP"
}
],
"mark_price": "50000",
"max_price": "52000",
"min_price": "48000",
"rfq_id": "r_2abCdEfGhIjKlMnOpQrStUvWxYz"
}