v6

OpenAPI 3.1.0raw.githubusercontent.com2026-08-0161197504.7 KB
valuation

Retrieve valuation history

Retrieve an account's valuation time series for the requested period. Suitable for charting an account's valuation over time.

get/accounts/{account_id}/valuation-history

Path parameters

account_idstring required

The ID of the account to retrieve the valuation history for.

The ID of the account to retrieve the valuation history for.

Query parameters

period_startstring date required

The period start (in ISO 8601 date format). Note the period is interpreted as a closed interval with both period_start and period_end included.

Example:period_start=2025-11-12

The period start (in ISO 8601 date format). Note the period is interpreted as a closed interval with both period_start and period_end included.

period_endstring date

The period end (in ISO 8601 date format). Note the period is interpreted as a closed period is interpreted as a closed interval with both period_start and period_end included.

Example:period_end=2025-11-12

The period end (in ISO 8601 date format). Note the period is interpreted as a closed period is interpreted as a closed interval with both period_start and period_end included.

Response

OK

resolution'day' required

The point aggregation resolution of the history time series.

Example response

{
  "series": [
    [
      "2026-07-13T09:34:12Z",
      "12345.67"
    ],
    [
      "2026-07-14T09:34:12Z",
      "12350.12"
    ]
  ]
}