Daily rewards time series

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 }
  ]
}
Path Params
string
required
Defaults to canton

Name of the chain.

string
required
Defaults to noves-validator-1::1220dd5cc6e969cd7d7c11e339fbd07fab5f6fa1f999dc09339228d17299d9d68941

The party identifier to fetch daily earnings for.

Query Params
int64
Defaults to 1780402842

Start timestamp (Unix timestamp). Optional. If both time bounds are omitted, the API defaults to the last 30 days. Requests wider than 30 days return a validation error.

int64
Defaults to 1782994842

End timestamp (Unix timestamp). Optional. If both time bounds are omitted, the API defaults to the current time and applies a trailing 30-day window. Requests wider than 30 days return a validation error.

Headers
string
required
Defaults to demokey

API Key to call the API. To generate one, visit https://noves.fi/pricing

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json