- 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 rollups
Mainnet
Mainnet
GET
https://api-mainnet.celenium.io/v1/rollup
rollup
Last modified:2025-01-16 22:05:09
Request
Authorization
Add parameter in header
apiKey
Example:
apiKey: ********************
Query Params
limit
integer
optional
<= 100
Example:
10
offset
integer
optional
Example:
0
sort
enum<string>
optional
Allowed values:
ascdesc
Example:
asc
sort_by
enum<string>
optional
Allowed values:
timeblobs_countsizefee
Example:
time
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/rollup?limit=10&offset=0&sort=asc&sort_by=time' \
--header 'apiKey;'
Responses
🟢200OK
application/json
Body
array of:
blobs_count
integer
optional
Example:
2
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/
fee
string <string>
optional
Example:
123.456789
first_message_time
string <date-time>
optional
Example:
2023-07-04T03:10:57+00:00
github
string <string>
optional
Example:
https://github.com/account
id
integer
optional
Example:
321
l2_beat
string <string>
optional
Example:
https://l2beat.com/scaling/projects/karak
last_message_time
string <date-time>
optional
Example:
2023-07-04T03:10:57+00:00
links
array[string]
optional
logo
string <string>
optional
Example:
https://some_link.com/image.png
name
string <string>
optional
Example:
Rollup name
size
integer
optional
Example:
1000
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
[
{
"blobs_count": 2,
"bridge": "https://github.com/account",
"description": "Long rollup description",
"explorer": "https://explorer.karak.network/",
"fee": "123.456789",
"first_message_time": "2023-07-04T03:10:57+00:00",
"github": "https://github.com/account",
"id": 321,
"l2_beat": "https://l2beat.com/scaling/projects/karak",
"last_message_time": "2023-07-04T03:10:57+00:00",
"links": [
"string"
],
"logo": "https://some_link.com/image.png",
"name": "Rollup name",
"size": 1000,
"slug": "rollup_slug",
"stack": "op_stack",
"twitter": "https://x.com/account",
"website": "https://website.com"
}
]
🟠400Bad Request
🔴500Internal Server Error
Modified at 2025-01-16 22:05:09