Get the valuations formatted for a graph Run in API Explorer
Ask AI
Query parameters
-
date Optional date to constrain only valuations from this date. For example: ?start_date=2022-06-12
-
date Optional date to constrain only valuations up until this date. For example: ?end_date=2022-06-18
-
Optional limit to constrain the number of unique days returned
Body
-
The start date for the valuations graph in YYYY-MM-DD format. Optional.
-
The end date for the valuations graph in YYYY-MM-DD format. Optional.
-
The maximum number of data points to return for the valuations graph. Optional.
Minimum value is
1, maximum value is0. -
The UUID of the client account to filter valuations by. Optional.
GET
/api/v1/plans/{plan_uuid}/reporting/valuations/{subAccount}
curl \
--request GET 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/reporting/valuations/{"value" => "", "summary" => "When the value is omitted"}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"start_date":"2025-12-24","end_date":"2025-12-25","limit":4259,"account_uuid":"e194eeea-317d-42b8-8656-ebb004075b03"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"start_date": "2025-12-24",
"end_date": "2025-12-25",
"limit": 4259,
"account_uuid": "e194eeea-317d-42b8-8656-ebb004075b03"
}
Response examples (200)
{
"value": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"valued_at": "2025-12-24"
}