get
https://api.canton.noves.fi//rewards//daily
Returns a daily rewards time series for a given party, one entry per day in the window
(oldest first). Days with no rewards are included with zeroed values, so the series is
dense across the whole window.
If no explicit date range is supplied, the API applies a default trailing 30-day window.
This endpoint supports a maximum 30-day window per request.
Unknown party: A well-formed party with no rewards is not an error — the API
returns HTTP 200 with a zero-filled days series. A malformed party id (not in
participant::identifier form) returns HTTP 400, and a window wider than 30 days returns HTTP 400.
Example response
{
"party": "noves-validator-1::1220dd5c...",
"period": { "startTime": "2026-05-30T14:06:32+00:00", "endTime": "2026-06-29T14:06:32+00:00" },
"metadata": { "as_of": "2026-06-29T13:59:09+00:00", "time_zone": "UTC" },
"days": [
{ "date_start": "2026-05-30T00:00:00+00:00", "date_end": "2026-05-31T00:00:00+00:00", "reward_count": 0, "total_amount": "0", "total_usd_value": null, "day_index": 0 }
]
}
