Skip to main content

Quote

Obtain the quote information sent or received by the user themselves. Whenever the user sends or receives a quote themselves, the data will be pushed.

Topic: rfq.open.quotes

Response Parameters

ParameterTypeComments
idstringMessage ID
topicstringTopic name
creationTimeintData created timestamp (ms)
dataarrayObject
> rfqIdstringInquiry ID
> rfqLinkIdstringThe unique identification code of the inquiring party, which is not visible when anonymous was set to true when the RFQ was created
> quoteIdstringQuote ID
> quoteLinkIdstringThe unique identification code of the inquiring party, which is not visible when anonymous was set to true when the quote was created
> expiresAtstringThe quote's expiration time (ms)
> deskCodestringThe unique identification code of the quote party, which is not visible when anonymous is set to true during quotation
> statusstringStatus of quote: Active, Canceled, PendingFill, Filled, Expired, Failed
>execQuoteSidestringExecute the quote direction, buy or sell. When the quote direction is 'buy', for maker, the execution direction is the same as the direction in legs, and opposite for taker. Conversely, the same applies
> createdAtstringTime (ms) when the trade is created in epoch, such as 1650380963
> updatedAtstringTime (ms) when the trade is updated in epoch, such as 1650380964
> quoteBuyListarray of objectsQuote buy direction
>> categorystringProduct type: spot, linear, option
>> symbolstringsymbol name
>> pricestringQuote price
>> qtystringQuantity
> quoteSellListarray of objectsQuote sell direction
>> categorystringProduct type: spot, linear, option
>> symbolstringsymbol name
>> pricestringQuote price
>> qtystringQuantity

Subscribe Example

{
"op": "subscribe",
"args": [
"rfq.open.quotes"
]
}

Stream Example

{
"topic": "rfq.open.quotes",
"creationTime": 1757578449562,
"data": [
{
"rfqLinkId": "",
"rfqId": "1757578410512325974246073709371267",
"quoteId": "1757578449553042047579782748460520",
"quoteLinkId": "",
"expiresAt": "1757578509556",
"status": "Active",
"deskCode": "test0904",
"execQuoteSide": "",
"quoteBuyList": [
{
"category": "linear",
"symbol": "BTCUSDT",
"price": "95800",
"qty": "1"
}
],
"quoteSellList": [
{
"category": "linear",
"symbol": "BTCUSDT",
"price": "95000",
"qty": "1"
}
],
"createdAt": "1757578449556",
"updatedAt": "1757578449556"
}
]
}