latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-20125174417.3 KB

e8fca3e578c7

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

best_ask_pricestring
best_ask_quantitystring
best_bid_pricestring
best_bid_quantitystring
created_atinteger

Unix milliseconds

mark_pricestring
max_pricestring

Upper bound of the acceptable price band

min_pricestring

Lower bound of the acceptable price band

rfq_idstring

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"
}