Celenium API Docs
PlansExplorer
PlansExplorer
  1. Blobs
  • Introduction
  • Celenium API
    • Blobs
      • List all blobs with filters
        GET
      • Get namespace blob by commitment on height
        POST
      • Get blob metadata by commitment on height
        POST
      • Get blobs via JSON-RPC like in Node API
        POST
    • 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
      • 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
    • 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. Blobs

Get blobs via JSON-RPC like in Node API

Mainnet
https://api-mainnet.celenium.io
Mainnet
https://api-mainnet.celenium.io
POST
https://api-mainnet.celenium.io
/v1/jsonrpc
Last modified:2025-07-12 10:20:39
The endpoint implements Celestia Node API Blobs.Get and Blobs.GetAll methods.

Request

Authorization
Add parameter in header
apiKey
Example:
apiKey: ********************
Body Params application/json
id
integer <uint64>
required
Examples:
123
jsonrpc
string 
required
Example:
2.0
method
enum<string> 
required
Allowed values:
blob.Getblob.GetAll
Examples:
blob.Getblob.GetAll
params
array [oneOf] 
required
integer 
optional
string 
optional
Example
{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "blob.Get",
    "params": [
        6587236,
        "AAAAAAAAAAAAAAAAAAAAAAAAACd31Nlhx1pSbdg=",
        "csQv5y9Mkxvac2AewCtNe1WUAB2P77LVWyrizbCbUJ4="
    ]
}

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 POST 'https://api-mainnet.celenium.io/v1/jsonrpc' \
--header 'Content-Type: application/json' \
--header 'apiKey;' \
--data-raw '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "blob.Get",
    "params": [
        6587236,
        "AAAAAAAAAAAAAAAAAAAAAAAAACd31Nlhx1pSbdg=",
        "csQv5y9Mkxvac2AewCtNe1WUAB2P77LVWyrizbCbUJ4="
    ]
}'

Responses

🟢200Success
application/json
Body
error
object  | null 
optional
code
integer 
required
message
string 
required
id
integer 
required
jsonrpc
string 
required
result
string  | integer  | boolean  | array  | object  | number  | null 
optional
Examples
{
    "id": 1,
    "jsonrpc": "2.0",
    "result": {
        "namespace": "AAAAAAAAAAAAAAAAAAAAAAAAACd31Nlhx1pSbdg=",
        "data": "CsgBCgAQ4sgbGMyQ6orFjfGkGCIgs+TJCu6U6x2WwAxAV5bw4JJ1XVSa8WS4rhIOglQKgR4yIG40C5z/s3qYnKVE5rt4Cix4kB0/szc4doURowYXr6AdOiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEIgNit9ijHnZxsPNXdWIhrDhXkMJaJ6siLcjL3QiUT1rqRSIFCWtGTjGuUBOQGeHJaxv/GHKNQlt301nmSK0qL9BYWyYgxyb2xsa2l0LXRlc3QSQNivNqBap4gwL1qMC3+u2vM1HG6OM85IdNfKYXE4tlUIF0eMQDJ4d1DZmAgXyw/+/p5F5algAj2QQ1qesvzFuAgaSAogUJa0ZOMa5QE5AZ4clrG/8Yco1CW3fTWeZIrSov0FhbISJAgBEiAhq2loZ3TJSQQxbWI+16yCJPehiGqAovfYwwpIvePlLg==",
        "share_version": 0,
        "commitment": "csQv5y9Mkxvac2AewCtNe1WUAB2P77LVWyrizbCbUJ4="
    }
}
Modified at 2025-07-12 10:20:39
Previous
Get blob metadata by commitment on height
Next
Get addresses
Built with