v1
latestOpenAPI 3.0.32026-07-173986194.3 KBReturns historical information for a single validator.
get/consensus/validators/{address}/history
Path parameters
addressstring required
An Oasis-style (bech32) address.
Example:oasis1qpg2xuz46g53737343r20yxeddhlvc2ldqsjh70p
The address of the entity to return.
Query parameters
limitinteger
The maximum numbers of items to return.
offsetinteger
The number of items to skip before starting to collect the result set.
frominteger
A filter on minimum epoch number, inclusive.
tointeger
A filter on maximum epoch number, inclusive.
Response
A JSON object containing historical information for a validator, grouped by epoch in reverse chronological order.
Example response
{
"total_count": 412,
"is_total_count_clipped": true,
"address": "oasis1qpg2xuz46g53737343r20yxeddhlvc2ldqsjh70p",
"history": [
{
"epoch": 13402,
"active_balance": "1234567890123456789012",
"active_shares": "1234567890123456789012",
"debonding_balance": "1234567890123456789012",
"debonding_shares": "1234567890123456789012"
}
]
}