Skip to main content
GET
/
wealth
/
accounts
/
{account_id}
/
portfolios
List portfolios for an account
curl --request GET \
  --url https://api.bluumfinance.com/v1/wealth/accounts/{account_id}/portfolios \
  --header 'Authorization: Basic <encoded-value>'
{
  "portfolios": [
    {
      "portfolio_id": "port_a1b2c3d4e5f6",
      "name": "Retirement Portfolio",
      "currency": "USD",
      "status": "active",
      "created_at": "2024-01-10T10:00:00Z",
      "updated_at": "2025-01-10T10:00:00Z"
    },
    {
      "portfolio_id": "port_b2c3d4e5f6g7",
      "name": "Growth Portfolio",
      "currency": "USD",
      "status": "paused",
      "created_at": "2023-05-03T13:30:00Z",
      "updated_at": "2025-01-05T09:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

account_id
string<uuid>
required

Response

Portfolios retrieved successfully

portfolios
object[]
status
enum<string>
Available options:
active,
paused,
completed,
cancelled
last_execution
object
notifications
object
created_at
string<date-time>
updated_at
string<date-time>