Skip to main content
GET
/
wealth
/
accounts
/
{account_id}
/
auto-invest
List auto-invest schedules
curl --request GET \
  --url https://service.bluumfinance.com/v1/wealth/accounts/{account_id}/auto-invest \
  --header 'Authorization: Basic <encoded-value>'
{
  "schedules": [
    {
      "auto_invest_id": "ai_a1b2c3d4e5f6",
      "name": "Monthly Investment",
      "amount": "500.00",
      "frequency": "monthly",
      "next_execution": "2025-02-15T09:30:00Z",
      "status": "active",
      "last_execution": {
        "executed_at": "2025-01-15T09:30:00Z",
        "status": "completed",
        "amount_invested": "500.00"
      }
    },
    {
      "auto_invest_id": "ai_b2c3d4e5f6g7",
      "name": "Weekly Tech",
      "amount": "100.00",
      "frequency": "weekly",
      "next_execution": "2025-01-20T10:00:00Z",
      "status": "active"
    }
  ],
  "total_count": 2
}

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

Query Parameters

status
enum<string>

Filter by status

Available options:
active,
paused,
completed,
cancelled
portfolio_id
string<uuid>

Filter by portfolio

Response

Auto-invest schedules retrieved successfully

schedules
object[]
total_count
integer