Executors
Get Executor
Get detailed information about a specific executor.
Checks active executors in memory first, then falls back to database for completed executors.
Returns full executor information including:
- Current status and PnL
- Full configuration
- Executor-specific custom information
get/executors/{executor_id}
Path parameters
executor_idstring required
Response
Successful Response
Example response
{
"account_name": "master_account",
"connector_name": "binance_perpetual",
"created_at": "2024-01-15T10:30:00Z",
"cum_fees_quote": 1.25,
"executor_id": "abc123...",
"executor_type": "position_executor",
"filled_amount_quote": 5000,
"is_active": true,
"is_trading": true,
"net_pnl_pct": 2.5,
"net_pnl_quote": 125.5,
"side": "BUY",
"status": "RUNNING",
"timestamp": 1705315800,
"trading_pair": "BTC-USDT"
}