## rfq.taker This channel is used to receive updates for RFQs where you are the `taker`. You'll receive an update when the RFQ status changes, or when a quote is made against your RFQ. RFQS can have a status of `open`, `filled`, `cancelled`, or `expired`. #### Response #### Response Example ```json { "rfqId": 12345, "productId": 67890, "kind": "option", "strategy": "RR", "description": "26Sep25/27Mar26 116000 CCal 40d", "status": "open", "baseCurrency": "BTC", "quoteCurrency": "USD", "amount": 1.5, "anonymous": false, "role": "maker", "markPrice": 0.1179, "tradeDirection": "buy", "tradePrice": 0.02, "tradeAmount": 25, "tradeCreatedAt": 1756802862567, "tradeId": 12345, "legs": [ { "instrumentId": 6451, "instrumentName": "BTC-26SEP25-116000-C", "direction": "sell", "ratio": 1, "expiry": "26Sep25", "amount": 25 }, { "instrumentId": 8830, "instrumentName": "BTC-27MAR26-116000-C", "direction": "buy", "ratio": 1, "expiry": "27Mar26", "amount": 25 } ], "hedge": { "amount": 2344243, "direction": "sell", "expiry": "31Oct25", "instrumentId": 11201, "instrumentName": "BTC-31OCT25", "price": 117212.13 }, "settlementOptions": ["BULL", "DBT"], "quoteCurrencies": { "DBT": "BTC", "BULL": "USDC" }, "quotes": [ { "rfqQuoteId": 12345, "direction": "buy", "price": 0.026, "amount": 1.5, "makers": [ "maker1", "maker2" ], "createdAt": 1756802862567 } ], "trades": [ { "direction": "sell", "price": 0.02, "amount": 25, "instrumentName": "BTC-26SEP25-116000-C", "exchangeTradeId": "BLOCK-792841", "createdAt": 1756802862567 }, { "direction": "buy", "price": 0.02, "amount": 25, "instrumentName": "BTC-27MAR26-116000-C", "exchangeTradeId": "BLOCK-792841", "createdAt": 1756802862567 } ], "createdAt": 1757871888038, "expiresAt": 1757871587930 } ```