Celenium API Docs
PlansExplorer
PlansExplorer
  1. Address
  • Introduction
  • Celenium API
    • Address
      • Get addresses
        GET
      • Get count of addresses in network
        GET
      • Get address info
        GET
      • Get blobs pushed by address
        GET
      • Get delegations made by address
        GET
      • Get grants where address is grantee
        GET
      • Get grants made by address
        GET
      • Get address messages
        GET
      • Get redelegations made by address
        GET
      • Get address stats
        GET
      • Get address transactions
        GET
      • Get undelegations made by address
        GET
      • Get vesting for address
        GET
    • 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 validator's count by status
      • Get validator info
      • Get blocks which was proposed by validator
      • Get validator's delegators
      • Get validator's jails
      • Get validator's uptime and history of signed block
    • Vesting
      • Periods vesting periods by id
    • Websocket
      • Websocket API
  1. Address

Get address info

Mainnet
https://api-mainnet.celenium.io
Mainnet
https://api-mainnet.celenium.io
GET
https://api-mainnet.celenium.io
/v1/address/{hash}
address
Last modified:2024-09-28 10:13:57
Get address info

Request

Path Params
hash
string 
required
Hash
>= 47 characters<= 47 characters
Example:
celestia12zs7e3n8pjd8y8ex0cyv67ethv30mekgqu665r

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'

Responses

🟢200OK
application/json
Body
Celestia address information
balance
object (responses.Balance) 
optional
Balance of address information
currency
string 
optional
Example:
utia
delegated
string 
optional
Example:
10000000000
spendable
string 
optional
Example:
10000000000
unbonding
string 
optional
Example:
10000000000
first_height
integer 
optional
Example:
100
hash
string 
optional
Example:
celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60
id
integer 
optional
Example:
321
last_height
integer 
optional
Example:
100
celestials
object (responses.Celestials) 
optional
Celestials primary domain
name
string 
read-onlyrequired
Celestials domain
>= 1 characters
Example:
celestials-id
image_url
string 
required
Image URL
Example:
https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC
primary
boolean 
optional
True if the domain is primary for the account. Default: false
Default:
false
Example
{
  "balance": {
    "currency": "utia",
    "delegated": "10000000000",
    "spendable": "10000000000",
    "unbonding": "10000000000"
  },
  "first_height": 100,
  "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60",
  "id": 321,
  "last_height": 100,
  "celestials": {
    "name": "celestials-id",
    "image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
    "primary": false
  }
}
🟢204No Content
🟠400Bad Request
🔴500Internal Server Error
Modified at 2024-09-28 10:13:57
Previous
Get count of addresses in network
Next
Get blobs pushed by address
Built with