> For the complete documentation index, see [llms.txt](https://3commas.gitbook.io/3commas-official-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://3commas.gitbook.io/3commas-official-api-docs/account/get-the-list-of-active-entities.md).

# Get the list of active entities

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

**Permission:** ACCOUNTS\_READ\
**Security:** SIGNED\ <br>

***

<mark style="color:blue;">**GET**</mark>

<mark style="color:blue;">**/ver1/accounts/{account\_id}/active\_trading\_entities**</mark>

***

\ <br>

## Path Parameters<br>

**account\_id**     `integer`\
Unique 3Commas ID for this exchange account entity

<br>

## Response Parameters<br>

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

&#x20;     **active\_bots\_count**     `integer`\
&#x20;     The number of all active DCA Bots on this account

&#x20;     **active\_deals\_count**     `integer`\
&#x20;     The number of all active deals of DCA Bot on this account

&#x20;     **active\_smart\_trades\_count**     `integer`\
&#x20;     The number of all active SmartTrades on this account

&#x20;     **active\_orders\_count**     `integer`\
&#x20;     The number of all active orders on this account

&#x20;     **active\_grid\_bots\_count**     `integer`\
&#x20;     The number of all active Grid Bots on this account

<br>

## Example request<br>

```json
GET /ver1/accounts/12345678/active_trading_entities
```

<br>

## Example Response and errors<br>

<details>

<summary>Status: 200 OK</summary>

<br>

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

</details>
