Skip to main content

Get the list of active entities

GET
/ver1/accounts/:account_id/active_trading_entities
Permission: ACCOUNTS_READ
Security: SIGNED

Returns the number of active trading entities (bots, deals, and SmartTrades) associated with the account using its ID.


Path Parameter

account_idintegerrequired

Unique 3Commas ID of this exchange account entity.

Example Request

GET
/ver1/accounts/12345678/active_trading_entities

Response Parameters

dataobject

Contains aggregated information about the active trading entities on this account.

Hide child parametersShow child parameters
active_bots_countinteger

The number of all active DCA Bots on this account.

active_deals_countinteger

The number of all active deals of DCA Bot on this account.

active_smart_trades_countinteger

The number of all active SmartTrades on this account.

active_orders_countinteger

The number of all active orders on this account.

active_grid_bots_countinteger

The number of all active Grid Bots on this account.

Example Responses

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