v2
OpenAPI 3.0.02026-07-311824171.4 MBTrading
Private
Retrieves a detailed log of all trigger orders (stop orders, take-profit orders, etc.) for the authenticated account. The log includes trigger order creation, activation, execution, and cancellation events.
Results can be filtered by currency and instrument name. Use pagination parameters (count and continuation) to retrieve large trigger order histories. This is useful for tracking trigger order activity and debugging trigger order behavior.
Scope: trade:read
get/private/get_trigger_order_history
Query parameters
currency'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR' required
Currency, i.e "BTC", "ETH", "USDC"
The currency symbol
instrument_namestring
Unique instrument identifier
Example:BTC-PERPETUAL
Instrument name
countinteger
Number of requested items, default - 20, maximum - 1000
continuationstring
Example:xY7T6cutS3t2B9YtaDkE6TS379oKnkzTvmEDUnEUP2Msa9xKWNNaT
Continuation token for pagination
Response
Success response
Example response
{
"result": {
"entries": [
{
"timestamp": 1536569522277,
"trigger_order_id": "SLTB-187015",
"order_id": "ETH-100234",
"instrument_name": "BTC-PERPETUAL",
"request": "trigger:order",
"last_update_timestamp": 1536569522277,
"source": "api"
}
],
"continuation": "xY7T6cutS3t2B9YtaDkE6TS379oKnkzTvmEDUnEUP2Msa9xKWNNaT"
}
}