Get the list of active entities

Description: Returns the list of active bots, deals and smarttrades using an ID account

Permission: ACCOUNTS_READ Security: SIGNED


GET

/ver1/accounts/{account_id}/active_trading_entities


Path Parameters

account_id integer Unique 3Commas ID for this exchange account entity

Response Parameters

data object Contains aggregated information about the active trading entities on this account

active_bots_count integer The number of all active DCA Bots on this account

active_deals_count integer The number of all active deals of DCA Bot on this account

active_smart_trades_count integer The number of all active SmartTrades on this account

active_orders_count integer The number of all active orders on this account

active_grid_bots_count integer The number of all active Grid Bots on this account

Example request

GET /ver1/accounts/12345678/active_trading_entities

Example Response and errors

Status: 200 OK

{
    "data": {
        "active_bots_count": 5,
        "active_deals_count": 4,
        "active_smart_trades_count": 3,
        "active_orders_count": 2,
        "active_grid_bots_count": 0
    }
}

Last updated

Was this helpful?