Celenium API Docs
PlansExplorer
PlansExplorer
  1. Namespace
  • 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
      • Get namespace blob by commitment on height
        POST
      • Get blob metadata by commitment on height
        POST
      • Get namespaces
        GET
      • Get namespace info
        GET
      • Get namespace info by id and version
        GET
      • Get blob metadata for namespace
        GET
      • Get namespace messages by id and version
        GET
      • List rollups using the namespace
        GET
      • Get namespace info by base64
        GET
      • Get namespace blobs on height
        GET
    • 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. Namespace

List rollups using the namespace

Mainnet
https://api-mainnet.celenium.io
Mainnet
https://api-mainnet.celenium.io
GET
https://api-mainnet.celenium.io
/v1/namespace/{id}/{version}/rollups
namespace
Last modified:2024-09-28 11:46:46
List rollups using the namespace

Request

Path Params
id
string 
required
Namespace id in hexadecimal
>= 56 characters<= 56 characters
Example:
0000000000000000000000000000000000000000b32b8afff6f3dabb
version
integer 
required
Version of namespace
Example:
0
Query Params
limit
integer 
optional
Count of requested entities
<= 100
Example:
10
offset
integer 
optional
Offset
Example:
0

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/0000000000000000000000000000000000000000b32b8afff6f3dabb/0/rollups?limit=10&offset=0'

Responses

🟢200OK
application/json
Body
array of:
bridge
string <string>
optional
Example:
https://github.com/account
description
string <string>
optional
Example:
Long rollup description
explorer
string <string>
optional
Example:
https://explorer.karak.network/
github
string <string>
optional
Example:
https://github.com/account
id
integer 
optional
Example:
321
l2_beat
string <string>
optional
Example:
https://github.com/account
links
array[string]
optional
logo
string <string>
optional
Example:
https://some_link.com/image.png
name
string <string>
optional
Example:
Rollup name
slug
string <string>
optional
Example:
rollup_slug
stack
string <string>
optional
Example:
op_stack
twitter
string <string>
optional
Example:
https://x.com/account
website
string <string>
optional
Example:
https://website.com
Example
[
  {
    "bridge": "https://github.com/account",
    "description": "Long rollup description",
    "explorer": "https://explorer.karak.network/",
    "github": "https://github.com/account",
    "id": 321,
    "l2_beat": "https://github.com/account",
    "links": [
      "string"
    ],
    "logo": "https://some_link.com/image.png",
    "name": "Rollup name",
    "slug": "rollup_slug",
    "stack": "op_stack",
    "twitter": "https://x.com/account",
    "website": "https://website.com"
  }
]
🟠400Bad Request
🔴500Internal Server Error
Modified at 2024-09-28 11:46:46
Previous
Get namespace messages by id and version
Next
Get namespace info by base64
Built with