Validators

Deprecated

Get all validator candidates. By default it returns only the bonded validators.

get
Query parameters
statusstringOptional

The validator bond status. Must be either 'bonded', 'unbonded', or 'unbonding'.

pageintegerOptional

The page number.

limitintegerOptional

The maximum number of items per page.

Responses
200
OK
application/json
get
GET /staking/validators HTTP/1.1
Host: akt.nownodes.io
Accept: */*
[
  {
    "operator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
    "consensus_pubkey": "cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf",
    "jailed": true,
    "status": 1,
    "tokens": "text",
    "delegator_shares": "text",
    "description": {
      "moniker": "text",
      "identity": "text",
      "website": "text",
      "security_contact": "text",
      "details": "text"
    },
    "bond_height": "0",
    "bond_intra_tx_counter": 0,
    "unbonding_height": "0",
    "unbonding_time": "1970-01-01T00:00:00Z",
    "commission": {
      "rate": "0",
      "max_rate": "0",
      "max_change_rate": "0",
      "update_time": "1970-01-01T00:00:00Z"
    }
  }
]
Deprecated

Query the information from a single validator

get
Path parameters
validatorAddranyRequired

Bech32 OperatorAddress of validator

Responses
200
OK
application/json
get
GET /staking/validators/{validatorAddr} HTTP/1.1
Host: akt.nownodes.io
Accept: */*
{
  "operator_address": "cosmosvaloper16xyempempp92x9hyzz9wrgf94r6j9h5f2w4n2l",
  "consensus_pubkey": "cosmosvalconspub1zcjduepq0vu2zgkgk49efa0nqwzndanq5m4c7pa3u4apz4g2r9gspqg6g9cs3k9cuf",
  "jailed": true,
  "status": 1,
  "tokens": "text",
  "delegator_shares": "text",
  "description": {
    "moniker": "text",
    "identity": "text",
    "website": "text",
    "security_contact": "text",
    "details": "text"
  },
  "bond_height": "0",
  "bond_intra_tx_counter": 0,
  "unbonding_height": "0",
  "unbonding_time": "1970-01-01T00:00:00Z",
  "commission": {
    "rate": "0",
    "max_rate": "0",
    "max_change_rate": "0",
    "update_time": "1970-01-01T00:00:00Z"
  }
}