- Introduction
- Celenium API
- Address
- Get addressesGET
- Get count of addresses in networkGET
- Get address infoGET
- Get blobs pushed by addressGET
- Get delegations made by addressGET
- Get grants where address is granteeGET
- Get grants made by addressGET
- Get address messagesGET
- Get redelegations made by addressGET
- Get address statsGET
- Get address transactionsGET
- Get undelegations made by addressGET
- Get vesting for addressGET
- 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 grants where address is grantee
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/address/{hash}/granters
address
Last modified:2024-09-28 10:19:46
Request
Path Params
hash
string
required
>= 47 characters<= 47 characters
Example:
celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r
Query Params
limit
integer
optional
>= 1<= 100
Example:
10
offset
integer
optional
>= 1
Example:
0
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/address/celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r/granters?limit=10&offset=0'
Responses
🟢200OK
application/json
Body
array of:
authorization
string
optional
Example:
/cosmos.staking.v1beta1.MsgDelegate
expiration
string
optional
Example:
2023-07-04T03:10:57+00:00
grantee
object (responses.ShortAddress)
optional
hash
string
required
Example:
celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw
celestials
object
required
granter
object (responses.ShortAddress)
optional
height
integer
optional
Example:
123123
params
object
optional
Additional properties
integer | number | string | boolean
optional
revoke_height
integer
optional
Example:
123123
revoked
boolean
optional
Example:
true
time
string
optional
Example:
2023-07-04T03:10:57+00:00
Example
[
{
"authorization": "/cosmos.staking.v1beta1.MsgDelegate",
"expiration": "2023-07-04T03:10:57+00:00",
"grantee": {
"hash": "celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw",
"celestials": {
"name": "celestials-id",
"image_url": "https://pub-02b8085711a24a2894773a06b77a13b7.r2.dev/default.png"
}
},
"granter": {
"hash": "celestia15hgtsr3sezr6tl6jsf0afdh3qlgpgq48czxqpw",
"celestials": {
"name": "celestials-id",
"image_url": "https://pub-02b8085711a24a2894773a06b77a13b7.r2.dev/default.png"
}
},
"height": 123123,
"params": {
"property1": null,
"property2": null
},
"revoke_height": 123123,
"revoked": true,
"time": "2023-07-04T03:10:57+00:00"
}
]
🟠400Bad Request
🔴500Internal Server Error
Modified at 2024-09-28 10:19:46