Get account info

Description: Shows information about a specific account using its ID

Permission: ACCOUNTS_READ Security: SIGNED


GET

/ver1/accounts/{account_id}


Path Parameter

account_id integer required Unique 3Commas ID for this exchange account entity

Parameters response

If successful, the response includes a copy of Account entity.

Example request

GET /ver1/accounts/12345678

Example Response and errors

Status: 201 Created

{
    "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"
}

Last updated

Was this helpful?