> 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-account-info.md).

# Get account info

**Description:** Shows information about a specific account using its ID<br>

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

***

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

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

***

<br>

## Path Parameter<br>

**account\_id**     `integer`     <mark style="color:orange;">required</mark>\
Unique 3Commas ID for this exchange account entity

<br>

## Parameters response<br>

{% hint style="info" %}
If successful, the response includes a copy of [Account](/3commas-official-api-docs/account.md) entity.
{% endhint %}

<br>

## Example request<br>

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

<br>

## Example Response and errors<br>

<details>

<summary>Status: 201 Created</summary>

<br>

```json
{
    "id": 12345678,
    "auto_balance_period": 12,
    "auto_balance_portfolio_id": null,
    "auto_balance_portfolio": null,
    "auto_balance_currency_change_limit": null,
    "autobalance_enabled": false,
    "hedge_mode_available": false,
    "hedge_mode_enabled": false,
    "is_locked": false,
    "smart_trading_supported": true,
    "smart_selling_supported": true,
    "available_for_trading": {},
    "stats_supported": true,
    "trading_supported": true,
    "market_buy_supported": true,
    "market_sell_supported": true,
    "conditional_buy_supported": true,
    "bots_allowed": true,
    "bots_ttp_allowed": true,
    "bots_tsl_allowed": true,
    "gordon_bots_available": true,
    "multi_bots_allowed": true,
    "created_at": "2024-08-29T14:16:10.830Z",
    "updated_at": "2024-09-26T12:24:40.064Z",
    "last_auto_balance": null,
    "fast_convert_available": true,
    "grid_bots_allowed": true,
    "api_key_invalid": false,
    "market_icon": "https://3commas.io/img/exchanges/bybit.png",
    "deposit_enabled": false,
    "include_in_summary": true,
    "supported_market_types": [
        "spot"
    ],
    "primary_display_currency_profit_percentage": {
        "currency": "USD",
        "amount": "-0.16"
    },
    "primary_display_currency_profit": {
        "currency": "USD",
        "amount": "-0.05357667685386204725891115598750896735184205717088"
    },
    "day_profit_primary_display_currency_percentage": {
        "currency": "USD",
        "amount": "1.3645"
    },
    "day_profit_primary_display_currency": {
        "currency": "USD",
        "amount": "0.44350852268521298378869766114212066212328671783252"
    },
    "primary_display_currency_amount": {
        "currency": "USD",
        "amount": "32.94603614574163795274108884401249103264815794282912"
    },
    "total_primary_display_currency_profit": {
        "currency": "USD",
        "amount": -0.05357667685386205
    },
    "available_include_in_summary": true,
    "api_key": "gyTAiGCgRe1hctsA1J",
    "name": "new_name",
    "auto_balance_method": null,
    "auto_balance_error": null,
    "customer_id": null,
    "subaccount_name": null,
    "lock_reason": null,
    "btc_amount": "0.000510475159191992399632554490196496789935784848",
    "usd_amount": "32.94603614574163795274108884401249103264815794282912",
    "day_profit_btc": "-0.000001634722576662767703961411470169876729678396865648",
    "day_profit_usd": "0.44350852268521298378869766114212066212328671783252",
    "day_profit_btc_percentage": "-0.32",
    "day_profit_usd_percentage": "1.36",
    "btc_profit": "-0.000033098063328996600367445509803503210064215152",
    "usd_profit": "-0.05357667685386204725891115598750896735184205717088",
    "usd_profit_percentage": "-0.16",
    "btc_profit_percentage": "-6.09",
    "total_btc_profit": "-3.30980633289966e-05",
    "total_usd_profit": "-0.05357667685386205",
    "pretty_display_type": "BybitSpot",
    "exchange_name": "Bybit Spot",
    "market_code": "bybit_spot",
    "api_keys_state": "ok"
}
```

</details>
