v2
OpenAPI 3.0.02026-07-311824171.4 MBBlock RFQ
Public
Returns a list of recent Block RFQ trades. Can be optionally filtered by currency.
This is a public method that provides market data about completed Block RFQ trades. For private Block RFQ information, use private/get_block_rfqs.
📖 Related Article: Deribit Block RFQ API walkthrough
get/public/get_block_rfq_trades
Query parameters
currency'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR' | 'any' required
Currency name or "any" if don't care
The currency symbol or "any" for all
continuationstring
Example:1738050297271:103
Continuation token for pagination. Consists of timestamp and block_rfq_id.
countinteger
Count of Block RFQs returned, maximum - 1000
Response
Success response
Example response
{
"result": {
"block_rfqs": [
{
"timestamp": 1517329113791,
"legs": [
{
"instrument_name": "BTC-PERPETUAL"
}
],
"combo_id": "BTC-FS-31DEC21-PERP",
"hedge": {
"instrument_name": "BTC-PERPETUAL"
}
}
],
"continuation": "1738050297271:103"
}
}