Skip to main content

Trade

Latest block trade information. All legs in the same block trade are included in the same update. Data will be pushed whenever there is a block trade.

Topic: rfq.open.public.trades

Response Parameters

ParameterTypeComments
idstringMessage ID
topicstringTopic name
creationTimeintData created timestamp (ms)
dataarrayObject
> rfqIdstringInquiry ID
>strategyTypestringPolicy type
> 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
>> categorystringProduct type: spot, linear, option
>> symbolstringsymbol name
>> sidestringInquiry direction: Valid values are buy and sell
>> pricestringExecution price
>> qtystringNumber of executions
>> markPricestringThe markPrice (contract) at the time of transaction, and the spot price is indexPrice

Subscribe Example

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

Stream Example

{
"topic": "rfq.open.public.trades",
"creationTime": 1757579314358,
"data": [
{
"rfqId": "1757579281847749169219132657134900",
"strategyType": "custom",
"legs": [
{
"category": "linear",
"symbol": "BTCUSDT",
"side": "Sell",
"price": "91600",
"qty": "1",
"markPrice": "90216.29"
}
],
"createdAt": "1757579314213",
"updatedAt": "1757579314347"
}
]
}