Skip to content

This channel is used to receive notifications on quotes created by you as the maker.

The event field provides details of the type of change that has occurred., which will be one of created, updated, deleted, cancelled, or filled.

The cancelled event type is sent when the RFQ is cancelled or if another quote has has been traded against the RFQ.

Note: If you want to receive a full breakdown of the actual trade, use the rfq.maker channel, which will receive an update when the RFQ is filled.

Response

rfqIdinteger(rfq.rfqId)

Unique identifier for the RFQ

Example: 12345
rfqQuoteIdinteger(rfq.rfqQuoteId)

Unique identifier for the RFQ quote

Example: 12345
labelstring(common.label)

Custom label/identifier for the object

Example: "MyRFQ-12345"
directionstring(common.direction)

Direction of the trade/leg/quote (buy or sell)

Enum"buy""sell"
Example: "buy"
pricenumber(common.price)

Price of the asset/leg/quote

Example: 0.026
amountnumber(common.amount)

Amount of the asset being traded/quoted

Example: 1.5
settlementOptionstring(rfqQuote.settlementOption)

The chosen settlement option for the quote.

Currently BULL and DBT are supported.

You can only send a value that matches one of the available settlementOptions for the RFQ.

Enum"BULL""DBT"
Example: "DBT"
quoteCurrencystring(rfqQuote.quoteCurrency)

The quote currency for the quote, as determined by the chosen settlementOption and the RFQ's quoteCurrencies mapping.

This is the currency in which the quote price is denominated.

Example: "BTC"
createdAtinteger(common.createdAt)

Timestamp when the object was created (unix timestamp in milliseconds)

Example: 1756802862567

Response Example

{
  "rfqQuoteId": 572,
  "rfqId": 825,
  "label": "MyRFQ-12345",
  "direction": "buy",
  "price": 0.118,
  "amount": 25,
  "settlementOption": "DBT",
  "quoteCurrency": "BTC",
  "settlementCredentials": 1234,
  "legs": [
    {
      "instrumentId": 6451,
      "instrumentName": "BTC-26SEP25-116000-C",
      "direction": "sell",
      "price": 0.0274
    },
    {
      "instrumentId": 8830,
      "instrumentName": "BTC-27MAR26-116000-C",
      "direction": "buy",
      "price": 0.1454
    }
  ],
  "hedge": {
    "instrumentId": 11201,
    "instrumentName": "BTC-31OCT25",
    "direction": "sell",
    "price": 117212.13
  },
  "createdAt": 1756802862567,
  "event": "filled"
}