/v1/rollups
Smart rollups ranked by inbox level, with stakers and commitment tallies
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/tezosrollups-api/v1/rollups" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosrollups-api/v1/rollups", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosrollups-api/v1/rollups");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tezosrollups-api/v1/rollups",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Tezos smart rollups (Layer-2) ranked by inbox level. pvm_kind is the rollup VM (wasm). Stakers post commitments and play refutation games to secure the rollup. Etherlink is Tezos's EVM-compatible smart rollup.",
"count": 14,
"source": "TzKT",
"rollups": [
{
"alias": "Etherlink",
"address": "sr1Ghq66tYK9y3r8CC1Tf8i8m5nxh8nTvZEf",
"creator": "tz1etHLky7fuVumvBDi92ogXQZZPESiFimWR",
"pvm_kind": "wasm",
"inbox_level": 13437667,
"last_activity": "2026-06-14T17:02:16Z",
"total_stakers": 6,
"active_stakers": 3,
"first_activity": "2026-06-14T17:02:16Z",
"num_transactions": 61922,
"pending_commitments": 1344,
"refuted_commitments": 0,
"cemented_commitments": 72539,
"active_refutation_games": 0
},
{
"alias": null,
"address": "sr19LCYLxPx91U7dPuWBMdLyYKdFzGwebPPP",
"creator": "tz1etHLky7fuVumvBDi92ogXQZZPESiFimWR",
"pvm_kind": "wasm",
"inbox_level": 0,
"last_activity": "2026-05-28T14:49:01Z",
"total_stakers": 0,
"active_stakers": 0,
"first_activity": "2026-05-28T14:49:01Z",
"num_transactions": 2,
"pending_commitments": 0,
"refuted_commitments": 0,
"cemented_commitments": 0,
"active_refutation_games": 0
},
{
"alias": null,
"address": "sr1ENcUK7JsHxv4iwZqvQFLf3yUPfejDT2hw",
"creator": "tz1etHLky7fuVumvBDi92ogXQZZPESiFimWR",
"pvm_kind": "wasm",
"inbox_level": 0,
"last_activity": "2024-04-03T08:22:16Z",
"total_stakers": 0,
"active_stakers": 0,
"first_activity": "2024-04-03T08:22:16Z",
"num_transactions": 0,
"pending_commitments": 0,
"refuted_commitments": 0,
"cemented_commitments": 0,
"active_refutation_games": 0
},
{
"alias": null,
"address": "sr1LboaWUdzN4bmigxKHhCmbxu2aYaaTZrwX",
"creator": "tz1dhPBgkEAanRLEca123XkfgphHmFYaj9mQ",
"pvm_kind": "wasm",
"inbox_level": 0,
"last_activity": "2023-07-18T12:46:23Z",
"total_stakers": 0,
"active_stakers": 0,
"first_activity": "2023-07-18T12:46:23Z",
"num_transactions": 0,
"pending_commitments": 0,
"refuted_commitments": 0,
"cemented_commitments": 0,
"active_refutation_games": 0
},
…