Skip to main content
GET
/
wealth
/
accounts
/
{account_id}
/
portfolios
List portfolios for an account
curl --request GET \
  --url https://service.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"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.bluumfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

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>
read-only
Available options:
active,
paused,
completed,
cancelled
last_execution
object
read-only
notifications
object
created_at
string<date-time>
read-only
updated_at
string<date-time>
read-only