Skip to main content
GET
/
api
/
public
/
v1
/
roboadvisor
/
balance
Get Robo Advisor balance and portfolio
curl --request GET \
  --url https://api.wallbit.io/api/public/v1/roboadvisor/balance \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": 1,
      "label": "My Portfolio",
      "category": null,
      "portfolio_type": "ROBOADVISOR",
      "balance": 1500,
      "portfolio_value": 1450,
      "cash": 50,
      "cash_available_withdrawal": 50,
      "risk_profile": {
        "risk_level": 3,
        "name": "Aggressive"
      },
      "performance": {
        "net_deposits": 1000,
        "net_profits": 500,
        "total_deposits": 1200,
        "total_withdrawals": 200
      },
      "assets": [
        {
          "symbol": "VTI",
          "shares": 5.2345,
          "market_value": 1200,
          "price": 229.18,
          "daily_variation_percentage": 0.35,
          "weight": 80,
          "logo": "https://static.atomicvest.com/VTI.svg"
        },
        {
          "symbol": "BND",
          "shares": 3.125,
          "market_value": 250,
          "price": 80,
          "daily_variation_percentage": -0.12,
          "weight": 16.67,
          "logo": "https://static.atomicvest.com/BND.svg"
        }
      ],
      "allocation": {
        "cash": 3.33,
        "securities": 96.67
      },
      "has_pending_transactions": false
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Obtain your API key from the Wallbit dashboard under Settings → API Keys.

Response

Robo Advisor portfolios retrieved successfully

data
object[]