Skip to main content

RFQ

Obtain the inquiries (requests for quotes) information sent or received by the user themselves. Whenever the user sends or receives an inquiry themselves, the data will be pushed.

Topic: rfq.open.rfqs

Response Parameters

ParameterTypeComments
idstringMessage ID
topicstringTopic name
creationTimeintData created timestamp (ms)
dataarray of objectsRFQ data: Return and obtain real-time inquiry information Open consistent
> 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
>counterpartiesArray of stringsList of bidders
> expiresAtstringThe quote's expiration time (ms)
> strategyTypestringInquiry label
> statusstringStatus of the inquiry form: Active, Canceled, PendingFill, Filled, Expired, Failed
> deskCodestringThe unique identification code of the inquiring party, which is not visible when anonymous was set to true when the RFQ was created
> createdAtstringTime (ms) when the trade is created in epoch, such as 1650380963
> updatedAtstringTime (ms) when the trade is updated in epoch, such as 1650380964
> legsarray of objectsCombination transaction
>> categorystringCategory. Valid values include: linear, option and spot
>> symbolstringsymbol name
>> sidestringInquiry direction. Valid values are buy and sell
>> qtystringOrder quantity of the instrument

Subscribe Example

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

Stream Example

{
"topic": "rfq.open.rfqs",
"creationTime": 1757482013792,
"data": [
{
"rfqLinkId": "",
"rfqId": "1757482013783362721227613524547439",
"counterparties": [
"test0904"
],
"strategyType": "custom",
"expiresAt": "1757482613784",
"status": "Active",
"deskCode": "1nu9d1",
"createdAt": "1757482013784",
"updatedAt": "1757482013784",
"legs": [
{
"category": "linear",
"symbol": "BTCUSDT",
"side": "Buy",
"qty": "5"
}
]
}
]
}