v3
latestOpenAPI 3.0.02026-07-311784111.3 MBTrading
Private
Retrieves a list of all open orders that have a specific label within a given currency. This is useful for tracking and managing groups of related orders that share the same label.
Open orders are orders that have been placed but not yet filled or cancelled. The label helps organize and identify related orders.
Scope: trade:read
get/private/get_open_orders_by_label
Query parameters
currency'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR' required
Currency, i.e "BTC", "ETH", "USDC"
The currency symbol
labelstring required
user defined label for the order (maximum 64 characters)
Response
Success response
Example response
{
"result": [
{
"order_id": "ETH-100234",
"starbase_order_id": 103148386170,
"instrument_name": "BTC-PERPETUAL",
"creation_timestamp": 1536569522277,
"last_update_timestamp": 1536569522277,
"starbase_last_update_timestamp": 1536569522277000000,
"block_trade": true,
"trigger_order_id": "SLIB-370",
"combo_order_id": "103148386169",
"app_name": "Example Application",
"mmp_cancelled": true,
"oto_order_ids": [
"ETH-100234"
],
"primary_order_id": "ETH-100234"
}
]
}