Returns a list of validators registered at the consensus layer (the list includes all registered entities, even those without a currently active validator node).
Query parameters
The maximum numbers of items to return.
The number of items to skip before starting to collect the result set.
A filter on the validator name. Every returned validator will have a name that is a superstring of the input param.
Response
A JSON object containing a list of validators registered at the consensus layer.
Example response
{
"total_count": 412,
"is_total_count_clipped": true,
"validators": [
{
"entity_address": "oasis1qpg2xuz46g53737343r20yxeddhlvc2ldqsjh70p",
"entity_id": "gb8SHLeDc69Elk7OTfqhtVgE2sqxrBCDQI84xKR+Bjg=",
"node_id": "lbxs4hlud9XNloIOdhJPaCahd7HtiY8QATCgGnFfCM0=",
"escrow": {
"active_balance": "1234567890123456789012",
"active_shares": "1234567890123456789012",
"debonding_balance": "1234567890123456789012",
"debonding_shares": "1234567890123456789012",
"self_delegation_balance": "1234567890123456789012",
"self_delegation_shares": "1234567890123456789012",
"active_balance_24": "1234567890123456789012"
},
"start_date": "2022-10-15T00:05:34Z",
"media": {
"name": "WhaleStake"
},
"signed_blocks": [
{
"height": 8048956
}
]
}
],
"stats": {
"total_staked_balance": "1234567890123456789012"
}
}Changes
Changed in 3 of the 3 revisions of this API.111
- ○
added the optional property
allOf[subschema #2]/validators/items/allOf[Validator]/signed_blocksto the response with the200statusresponse-optional-property-added
- ○
- ▲
the
allOf[subschema #2]/validators/items/allOf[Validator]/start_dateresponse's property type/format changed fromstring/date-timetostring/for status200response-property-type-changed
- ▲
- ●
removed the optional property
allOf[subschema #2]/validators/items/allOf[Validator]/signed_blocksfrom the response with the200statusresponse-optional-property-removed
This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●