v2
OpenAPI 3.0.02026-07-311824171.4 MBMaker method
Adds a quote to an existing Block RFQ. To calculate individual leg prices, use private/get_leg_prices.
Use private/get_block_rfqs to retrieve Block RFQ information, or private/edit_block_rfq_quote to modify an existing quote.
📖 Related Article: Deribit Block RFQ API walkthrough
Scope: block_rfq:read_write
Query parameters
User defined label for the Block RFQ quote (maximum 64 characters). Used to identify quotes of a selected Block RFQ
ID of the Block RFQ
It represents the requested order size. For perpetual and inverse futures the amount is in USD units. For options and linear futures it is the underlying base currency coin.
This value multiplied by the ratio of a leg gives trade size on that leg.
Direction: buy, or sell
Direction of trade from the maker perspective
List of legs used for Block RFQ quote
[
{
"instrument_name": "BTC-PERPETUAL"
}
]JSON string containing: instrument_name, direction, price, amount
Hedge leg of the Block RFQ. There is only one hedge leg allowed per Block RFQ
Aggregated price used for quoting future spreads.
The timestamp when the quote expires (milliseconds since the Unix epoch)
Response
Success response
Example response
{
"result": {
"creation_timestamp": 1536569522277,
"last_update_timestamp": 1536569522277,
"legs": [
{
"instrument_name": "BTC-PERPETUAL"
}
],
"hedge": {
"instrument_name": "BTC-PERPETUAL"
},
"app_name": "Example Application"
}
}