block_rfq.maker.quotes.{currency}
Description
Subscribe to Block RFQ maker quotes updates for a specific currency.
Request Path And Method
wss path:
/ws/private
method:
private/subscribe
Request Example
{
"method": "private/subscribe",
"rid": 4,
"params": {
"channels": [
"block_rfq.maker.quotes.any"
]
}
}
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| currency | string | true | The currency symbol or "any" for all. Valid values: BTC, ETH, USDC, USDT, EURR, any |
Notification Message
| Name | Type | Description |
|---|---|---|
| method | string | Equals to subscription |
| channel | string | Equals to block_rfq.maker.quotes |
| result | array | Array of objects |
| > quoteId | string | ID of the Block RFQ quote |
| > blockRfqId | string | ID of the Block RFQ |
| > label | string | The user created label for the order |
| > filledQuantity | string | Filled amount of the quote. For perpetual and futures the filled_amount is in USD units, for options - in units or corresponding cryptocurrency contracts, e.g., BTC or ETH |
| > executionInstruction | string | Execution instruction of the quote |
| > createdAt | long | The time in UNIX milliseconds since the epoch when the Order was created |
| > quantity | string | The total size of the Quote, denominated in the clearingCurrency of the RFQ |
| > legs | array | The composite Instrument legs of the RFQ |
| >> instrumentName | string | The exchange instrument name |
| >> ratio | string | The relative multiplier applied to the quantity of the Instrument's amount relative to the amount of the RFQ. Maximum of 2 decimal places |
| >> side | string | The direction of the composite leg relative to the RFQ. Valid values include buy, sell |
| >> price | string | The price of the Instrument leg, denominated in the quoteCurrency of the RFQ |
| > hedge | object | Hedge information |
| >> instrumentName | string | Instrument name |
| >> price | string | The price of the Instrument leg, denominated in the quoteCurrency of the RFQ |
| >> quantity | string | Quantity |
| >> side | string | The direction of the Order. Valid values include buy, sell |
| > price | string | The total strategy price of the Quote, denominated in the quoteCurrency of the RFQ |
| > side | string | The direction of the Quote. Valid values include buy, sell |
| > status | string | The availability of the quote for the user to action. Valid values include open, closed, filled, created, cancelled |
| > replaced | boolean | true if the quote was edited, otherwise false |