GET
/
api
/
v1
/
pos
/
validator
/
all
curl --request GET \
  --url https://namada-indexer-01.originstake.com/api/v1/pos/validator/all \
  --header 'Key: <api-key>'
{
  "200": [
    {
      "validatorId": "<string>",
      "address": "<string>",
      "votingPower": "<string>",
      "commission": "<string>",
      "maxCommission": "<string>",
      "name": "<string>",
      "state": "<string>"
    }
  ]
}

Query Parameters

state
array

Filter validators by their status:

  • consensus: Active validators in consensus set
  • belowCapacity: Active validators below capacity
  • belowThreshold: Validators below threshold
  • inactive: Inactive validators
  • jailed: Jailed validators
  • unknown: Unknown status

Response

200
array

Array of validator objects containing: