Skip to main content
GET
/
accounts
/
{account_id}
/
valuation-history
Retrieve valuation history
curl --request GET \
  --url https://api.example.com/accounts/{account_id}/valuation-history \
  --header 'Authorization: Bearer <token>'
{
  "resolution": "<string>",
  "series": [
    "<array>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

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

Query Parameters

period_start
string<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"

period_end
string<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"

Response

OK

resolution
string
required

The point aggregation resolution of the history time series.

Allowed value: "day"
series
SeriesPoint · array[]
required

Time series of [ISO-8601 date, decimal] points.

Required array length: 2 elements
Example:
[
  ["2025-01-01", "12345.67"],
  ["2025-01-02", "12350.12"]
]