Celenium API Docs
PlansExplorer
PlansExplorer
  1. Validator
  • Introduction
  • Celenium API
    • Address
      • Get addresses
      • Get count of addresses in network
      • Get address info
      • Get blobs pushed by address
      • Get delegations made by address
      • Get grants where address is grantee
      • Get grants made by address
      • Get address messages
      • Get redelegations made by address
      • Get address stats
      • Get address transactions
      • Get undelegations made by address
      • Get vesting for address
    • Namespace
      • List all blobs with filters
      • Get namespace blob by commitment on height
      • Get blob metadata by commitment on height
      • Get namespaces
      • Get namespace info
      • Get namespace info by id and version
      • Get blob metadata for namespace
      • Get namespace messages by id and version
      • List rollups using the namespace
      • Get namespace info by base64
      • Get namespace blobs on height
    • Block
      • Get blocks
      • Get count of blocks in network
      • Get block info
      • List blobs which was pushed in the block
      • Count of blobs which was pushed in block
      • Get events from begin and end of block
      • Get messages contained in the block
      • ODS for block
      • Get block stats by height
    • General
      • Get network constants
      • Get celenium enumerators
      • Get current indexer head
    • Gas
      • Get estimated gas for pay for blob
      • Get estimated gas price
    • Rollup
      • Get rollups
      • Get count of rollups in network
      • Get rollup by slug
      • Get rollup info
      • Get rollup blobs
      • Get rollup distribution
      • Export rollup blobs
      • Get rollup namespaces info
      • Get rollup stats
    • Search
      • Search by hash
    • Stats
      • Get histogram for namespace with precomputed stats
      • Get namespaces with sorting by size.
      • Get current TIA price
      • Get histogram with TIA price
      • Get histogram with precomputed stats
      • Get cumulative histogram with precomputed stats​
      • Get histogram for staking with precomputed stats
      • Get value by table and function
      • Get tps
    • Transactions
      • Get transactions
      • Get count of transactions in network
      • List genesis transactions info
      • Get transaction by hash
      • List blobs which was pushed by transaction
      • Count of blobs which was pushed by transaction
      • Get transaction events
      • Get transaction messages
    • Validator
      • Get validators
        GET
      • Get validator's count by status
        GET
      • Get validator info
        GET
      • Get blocks which was proposed by validator
        GET
      • Get validator's delegators
        GET
      • Get validator's jails
        GET
      • Get validator's uptime and history of signed block
        GET
    • Vesting
      • Periods vesting periods by id
    • Websocket
      • Websocket API
  1. Validator

Get validators

Mainnet
https://api-mainnet.celenium.io
Mainnet
https://api-mainnet.celenium.io
GET
https://api-mainnet.celenium.io
/v1/validators
validator
Last modified:2025-01-16 22:04:21
Returns a list of validators in network.

Request

Query Params
limit
integer 
optional
Count of requested entities
<= 100
Example:
10
offset
integer 
optional
Offset
Example:
0
jailed
boolean 
optional
Return only jailed validators
Example:
false

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-mainnet.celenium.io/v1/validators?limit=10&offset=0&jailed=false'

Responses

🟢200OK
application/json
Body
array of:
address
object (responses.ShortAddress) 
optional
hash
string 
required
Celestia address
Example:
celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw
celestials
object 
required
Primary celestials domain
commissions
string 
optional
Example:
1
cons_address
string 
optional
Example:
E641C7A2C964833E556AEF934FBF166B712874B6
contacts
string 
optional
Example:
security@0xfury.com
delegator
object (responses.ShortAddress) 
optional
details
string 
optional
Example:
Some long text about validator
id
integer 
optional
Example:
321
identity
string 
optional
Example:
2C877AC873132C91
jailed
boolean 
optional
Example:
false
max_change_rate
string 
optional
Example:
0.01
max_rate
string 
optional
Example:
0.1
min_self_delegation
string 
optional
Example:
1
moniker
string 
optional
Example:
Easy 2 Stake
rate
string 
optional
Example:
0.03
rewards
string 
optional
Example:
1
stake
string 
optional
Example:
1
voting_power
string 
optional
Example:
1
website
string 
optional
Example:
https://www.easy2stake.com/
Example
[
  {
    "address": {
      "hash": "celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw",
      "celestials": {
        "name": "celestials-id",
        "image_url": "https://pub-02b8085711a24a2894773a06b77a13b7.r2.dev/default.png"
      }
    },
    "commissions": "1",
    "cons_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
    "contacts": "security@0xfury.com",
    "delegator": {
      "hash": "celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw",
      "celestials": {
        "name": "celestials-id",
        "image_url": "https://pub-02b8085711a24a2894773a06b77a13b7.r2.dev/default.png"
      }
    },
    "details": "Some long text about validator",
    "id": 321,
    "identity": "2C877AC873132C91",
    "jailed": false,
    "max_change_rate": "0.01",
    "max_rate": "0.1",
    "min_self_delegation": "1",
    "moniker": "Easy 2 Stake",
    "rate": "0.03",
    "rewards": "1",
    "stake": "1",
    "voting_power": "1",
    "website": "https://www.easy2stake.com/"
  }
]
🟠400Bad Request
🔴500Internal Server Error
Modified at 2025-01-16 22:04:21
Previous
Get transaction messages
Next
Get validator's count by status
Built with