v3

latestOpenAPI 3.0.02026-07-311784111.3 MB
Block RFQ
Private

Taker method

Allows Block RFQ taker to cancel an active trigger for a Block RFQ. The response includes the full Block RFQ object with the trade trigger state set to cancelled.

Use private/get_block_rfqs to retrieve Block RFQ information.

📖 Related Article: Deribit Block RFQ API walkthrough

Scope: block_rfq:read_write

Try in API console

get/private/cancel_block_rfq_trigger

Query parameters

block_rfq_idinteger required

ID of the Block RFQ

Response

Success response

creation_timestampinteger

The timestamp when Block RFQ was created (milliseconds since the Unix epoch)

expiration_timestampinteger

The timestamp when the Block RFQ will expire (milliseconds since the UNIX epoch)

block_rfq_idinteger

ID of the Block RFQ

role'taker' | 'maker'

Role of the user in Block RFQ

state'open' | 'filled' | 'cancelled' | 'expired'

State of the Block RFQ

taker_ratingstring

Rating of the taker

makersstring[]
amountnumber

This value multiplied by the ratio of a leg gives trade size on that leg.

min_trade_amountnumber

Minimum amount for trading

combo_idstring

Unique combo identifier

labelstring

User defined label for the Block RFQ (maximum 64 characters)

app_namestring

The name of the application that created the Block RFQ on behalf of the user (optional, visible only to taker).

mark_pricenumber

The mark price for the instrument

disclosedboolean

Indicates whether the RFQ was created as non-anonymous, meaning taker and maker aliases are visible to counterparties.

takerstring

Taker alias. Present only when disclosed is true.

index_pricesnumber[]
included_in_taker_ratingboolean

Indicates whether the RFQ is included in the taker's rating calculation. Present only for closed RFQs created by the requesting taker.

Example response

{
  "creation_timestamp": 1536569522277,
  "expiration_timestamp": 1536569522277,
  "asks": [
    {
      "last_update_timestamp": 1536569522277,
      "expires_at": 1745312540321
    }
  ],
  "bids": [
    {
      "last_update_timestamp": 1536569522277,
      "expires_at": 1745312540321
    }
  ],
  "legs": [
    {
      "instrument_name": "BTC-PERPETUAL"
    }
  ],
  "hedge": {
    "instrument_name": "BTC-PERPETUAL"
  },
  "combo_id": "BTC-FS-31DEC21-PERP",
  "app_name": "Example Application",
  "taker": "TAKER1"
}