- 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
- General
- Gas
- Rollup
- Search
- 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
- Validator
- Vesting
- Websocket
Get validator's delegators
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/validators/{id}/delegators
validator
Last modified:2024-09-28 11:59:30
Request
Path Params
id
integer
required
Example:
1
Query Params
limit
integer
optional
>= 1<= 100
Example:
10
offset
integer
optional
>= 1
Example:
0
show_zero
boolean
optional
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/1/delegators?limit=10&offset=0&show_zero=false'
Responses
🟢200OK
application/json
Body
array of:
amount
string
optional
Example:
0.1
delegator
object (responses.ShortAddress)
optional
hash
string
required
Example:
celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw
celestials
object
required
validator
object (responses.ShortValidator)
optional
cons_address
string
optional
Example:
E641C7A2C964833E556AEF934FBF166B712874B6
id
integer
optional
Example:
321
moniker
string
optional
Example:
Easy 2 Stake
Example
[
{
"amount": "0.1",
"delegator": {
"hash": "celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw",
"celestials": {
"name": "celestials-id",
"image_url": "https://pub-02b8085711a24a2894773a06b77a13b7.r2.dev/default.png"
}
},
"validator": {
"cons_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
"id": 321,
"moniker": "Easy 2 Stake"
}
}
]
🟠400Bad Request
🔴500Internal Server Error
Modified at 2024-09-28 11:59:30