v1
latestOpenAPI 3.1.02026-07-241653251.3 MBTrade Strategy
Get an Execution
Retrieves a single Execution by its id. Synchronous. Includes the full instructions[] array.
get/strategies/executions/{execution_id}
Path parameters
execution_idstring uuid required
Unique identifier of the Execution.
Headers
X-SCX-SIGNEDstring required
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
X-SCX-TIMESTAMPstring required
Example:1678901234
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Response
The requested Execution.
Example response
{
"message": {
"id": "b1c2d3e4-f5a6-4789-bcde-f01234567890",
"strategy_id": "b1c2d3e4-f5a6-4789-bcde-f01234567890",
"operation_id": "b1c2d3e4-f5a6-4789-bcde-f01234567890",
"trader_id": "b1c2d3e4-f5a6-4789-bcde-f01234567890",
"participant_code": "CUST01",
"status": "settled",
"instructions": [
{
"underlying_currency": "BTC",
"quoted_currency": "USD",
"side": "buy",
"amount": "100.50",
"amount_type": "notional",
"status": "executed",
"price": "100.50",
"quantity": "100.50",
"total_notional": "100.50",
"executed_at": "2026-04-17T10:00:00Z"
}
],
"created_at": "2026-04-17T10:00:00Z",
"updated_at": "2026-04-17T10:00:00Z"
}
}