Get Combos
Method: public/get_combos
Parameters
| Parameter |
Type |
Required |
Description |
| currency |
string |
true |
Currency. Options: BTC, ETH, USDC, USDT, EURR, any |
Request Example
{
"rid": 1003,
"method": "public/get_combos",
"params": {
"currency": "BTC"
}
}
Response
| Name |
Type |
Description |
| createdAt |
long |
The timestamp (milliseconds since the Unix epoch) |
| comboId |
string |
Unique combo identifier |
| instrumentId |
integer |
Instrument id |
| legs |
array of object |
|
| > quantity |
string |
Size multiplier of a leg. A negative value indicates that the trades on given leg are in opposite direction to the combo trades they originate from |
| > instrumentName |
string |
Unique instrument identifier |
| state |
string |
Combo state: "rfq", "active", "inactive" |
| stateTimestamp |
long |
The timestamp (milliseconds since the Unix epoch) |
Response Example
{
"rid": 1003,
"result": [
{
"createdAt": 1760040674000,
"comboId": "BTC-BOX-26DEC25-60000_120000",
"instrumentId": 479872,
"legs": [
{"quantity": "1", "instrumentName": "BTC-26DEC25-60000-C"},
{"quantity": "-1", "instrumentName": "BTC-26DEC25-60000-P"},
{"quantity": "-1", "instrumentName": "BTC-26DEC25-120000-C"},
{"quantity": "1", "instrumentName": "BTC-26DEC25-120000-P"}
],
"state": "active",
"stateTimestamp": 1760040674188
}
]
}