/v1/rollup
One rollup in full: PVM kind, commitments, refutation games
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tezosrollups-api/v1/rollup" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosrollups-api/v1/rollup", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosrollups-api/v1/rollup");
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/rollup",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "A single Tezos smart rollup in full: its address, name, PVM kind, inbox level, staker counts, commitment tallies (cemented/pending/refuted/executed) and refutation-game activity. Omit address for the most active rollup.",
"alias": "Etherlink",
"source": "TzKT",
"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",
"last_commitment": "src13JmycMewT8aPdNRan6uCsNMASbQmDKCQGjExbXUzzkmJaqqEW1",
"num_transactions": 61922,
"genesis_commitment": "src138xucrn88ZvKyCz5cUAheMgC7fbRhgf94PyE9rg3zu7obkMeQi",
"pending_commitments": 1344,
"refuted_commitments": 0,
"cemented_commitments": 72539,
"executed_commitments": 17579,
"refutation_games_total": 0,
"active_refutation_games": 0
},
"meta": {
"timestamp": "2026-06-14T17:04:28.110Z",
"request_id": "10cfe904-4070-41d8-9a50-03ab41861340"
},
"status": "ok",
"message": "Rollup retrieved successfully",
"success": true
}