v1

latestOpenAPI 3.0.02026-07-26166415635.8 KB
Rebalancing

List All Runs.

Lists runs.

get/v1/rebalancing/runs

Query parameters

account_idstring

Any runs for this account_id will be returned

statusstring

Status of portfolio run to filter by

typestring

Type of portfolio run (full_rebalance, invest_cash)

page_tokenstring

Pagination token

limitstring

Max number of runs to return per page

Response

The runs which match the query

next_page_tokenstring nullable required

Use this token in your next API call to paginate through the dataset and retrieve the next page of results. A null token indicates there are no more data to fetch.

Example response

{
  "next_page_token": "MTAwMA==",
  "runs": [
    {
      "account_id": "4db36989-6565-4011-9126-39fe6b3d9bf6",
      "id": "0f9e8a7b-1c2d-4e3f-9a0b-1c2d3e4f5a6b",
      "initiated_from": "api",
      "portfolio_id": "9b2c1d4e-8f7a-4c3b-9d2e-1f0a8b7c6d5e",
      "status": "COMPLETED_SUCCESS",
      "type": "full_rebalance",
      "updated_at": "2025-01-15T16:30:00Z"
    }
  ]
}