Get realtime rfq quotes
For maker.
Endpoint
block/rfqs/get_quotes
Parameters(params)
| Parameter |
Type |
Required |
Description |
| blockRfqId |
string |
false |
ID of the Block RFQ |
| label |
string |
false |
User defined label for the Block RFQ quote (maximum 32 characters). Used to identify quotes of a selected Block RFQ |
| quoteId |
string |
false |
ID of the Block RFQ quote |
| role |
string |
false |
The role of the desk in the created Quote. Valid values include: taker, maker |
Request Example
{
"rid": 20008,
"method": "block/rfqs/get_quotes",
"params": {
"role": "taker"
}
}
Response(result)
| Name |
Type |
Description |
| results |
array of objects |
Array of quote 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 |
| > expiresAt |
long |
The time in UNIX milliseconds since the epoch when the RFQ expires |
| > taker |
string |
The taker's deskCode, serving as a unique identifier. Not visible when anonymous |
| > status |
string |
The availability of the Quote for the user to action. Active/Canceled/Filled/Expired/Failed |
| > execSide |
string |
The execution side of the quote: Buy or Sell |
| > createdAt |
long |
The time in UNIX milliseconds since the epoch when the Quote was created |
| > updatedAt |
long |
The time in UNIX milliseconds since the epoch when the Quote was updated |
| > buyList |
array of objects |
Buy-side quote list. Either buyList or sellList (at least one required) |
| >> kind |
string |
Product type. spot,linear,inverse,option |
| >> symbol |
string |
Instrument name |
| >> price |
string |
Price of a quote |
| >> quantity |
string |
Quote quantity |
| > sellList |
array of objects |
Sell-side quote list. Either buyList or sellList (at least one required) |
| >> kind |
string |
Product type. spot,linear,inverse,option |
| >> symbol |
string |
Instrument name |
| >> price |
string |
Price of a quote |
| >> quantity |
string |
Quote quantity |
Response Example
{
"rid": 20008,
"result": {
"results": [
{
"quoteId": "175809710566651843847292442119248",
"blockRfqId": "1758097105279783463203211181165093",
"label": "MarketSimulationQuote",
"expiresAt": 1758097165666,
"taker": "LP1412200",
"status": "Active",
"createdAt": 1758097105666,
"updatedAt": 1758097105666,
"buyList": [
{
"kind": "option",
"symbol": "BTC-26JUN26-200000-P-USDT",
"price": "75000.0",
"quantity": "1.0"
}
],
"sellList": []
}
]
}
}