- 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 blobs on height
Deprecated
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/namespace_by_hash/{hash}/{height}
namespace
Last modified:2025-03-11 14:42:43
Request
Path Params
hash
string
required
Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJBA=
height
integer
required
>= 1
Example:
10000
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=/10000'
Responses
🟢200OK
application/json
Body
array of:
commitment
string <base64>
optional
Example:
vbGakK59+Non81TE3ULg5Ve5ufT9SFm/bCyY+WLR3gg=
content_type
string <string>
optional
Example:
image/png
data
string <base64>
optional
Example:
b2sgZGVtbyBkYQ==
namespace
string <base64>
optional
Example:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAs2bWWU6FOB0=
share_version
integer
optional
Example:
0
Example
[
{
"commitment": "vbGakK59+Non81TE3ULg5Ve5ufT9SFm/bCyY+WLR3gg=",
"content_type": "image/png",
"data": "b2sgZGVtbyBkYQ==",
"namespace": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAs2bWWU6FOB0=",
"share_version": 0
}
]
🟠400Bad Request
Modified at 2025-03-11 14:42:43