- 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 filtersGET
- Get namespace blob by commitment on heightPOST
- Get blob metadata by commitment on heightPOST
- Get namespacesGET
- Get namespace infoGET
- Get namespace info by id and versionGET
- Get blob metadata for namespaceGET
- Get namespace messages by id and versionGET
- List rollups using the namespaceGET
- Get namespace info by base64GET
- Get namespace blobs on heightGET
- 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 namespace info by base64
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/namespace_by_hash/{hash}
namespace
Last modified:2025-03-11 14:33:26
Request
Path Params
hash
string
required
Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJBA=
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/namespace_by_hash/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJBA='
Responses
🟢200OK
application/json
Body
blobs_count
integer
optional
Example:
10000
hash
string <base64>
optional
Example:
U3dhZ2dlciByb2Nrcw==
id
integer
optional
Example:
321
last_height
integer <int64>
optional
Example:
100
last_message_time
string <date-time>
optional
Example:
2023-07-04T03:10:57+00:00
name
string <string>
optional
Example:
name
namespace_id
string <binary>
optional
Example:
4723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02
pfb_count
integer
optional
Example:
12
reserved
boolean
optional
Example:
true
size
integer
optional
Example:
12345
version
integer
optional
Example
{
"blobs_count": 10000,
"hash": "U3dhZ2dlciByb2Nrcw==",
"id": 321,
"last_height": 100,
"last_message_time": "2023-07-04T03:10:57+00:00",
"name": "name",
"namespace_id": "4723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02",
"pfb_count": 12,
"reserved": true,
"size": 12345,
"version": 0
}
🟢204No Content
🟠400Bad Request
🔴500Internal Server Error
Modified at 2025-03-11 14:33:26