- 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 current indexer head
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/head
general
Last modified:2025-02-18 13:08:02
Request
None
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/head'
Responses
🟢200OK
application/json
Body
chain_id
string <string>
optional
Example:
mocha-4
hash
string <string>
optional
Example:
652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF
id
integer <int64>
optional
Example:
321
last_height
integer <int64>
optional
Example:
100
last_time
string <date-time>
optional
Example:
2023-07-04T03:10:57+00:00
name
string <string>
optional
Example:
indexer
synced
boolean
optional
Example:
true
total_accounts
integer <int64>
optional
Example:
43
total_blobs_size
integer <int64>
optional
Example:
56789
total_fee
string <string>
optional
Example:
312
total_stake
string <string>
optional
Example:
312
total_supply
string <string>
optional
Example:
312
total_tx
integer <int64>
optional
Example:
23456
total_validators
integer <int64>
optional
Example:
100
total_voting_power
string <string>
optional
Example:
312
total_namespaces
integer <int64>
optional
Example:
123
Example
{
"chain_id": "mocha-4",
"hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
"id": 321,
"last_height": 100,
"last_time": "2023-07-04T03:10:57+00:00",
"name": "indexer",
"synced": true,
"total_accounts": 43,
"total_blobs_size": 56789,
"total_fee": "312",
"total_stake": "312",
"total_supply": "312",
"total_tx": 23456,
"total_validators": 100,
"total_voting_power": "312",
"total_namespaces": 123
}
🟢204No Content
🟠400Bad Request
🔴500Internal Server Error
Modified at 2025-02-18 13:08:02