/v1/periods
Recent voting periods, newest first
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/tezosgov-api/v1/periods" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosgov-api/v1/periods", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosgov-api/v1/periods");
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/tezosgov-api/v1/periods",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Recent Tezos voting periods (newest first). Tezos amendments move through proposal → exploration → cooldown → promotion → adoption; each period's kind, status and ballot tally are shown.",
"count": 20,
"source": "TzKT",
"periods": [
{
"kind": "promotion",
"epoch": 90,
"index": 175,
"status": "active",
"nay_pct": 0,
"yay_pct": 27.97,
"end_time": "2026-06-15T21:17:25Z",
"pass_pct": 33.18,
"last_level": 13656288,
"start_time": "2026-06-01T13:34:49Z",
"first_level": 13454689,
"nay_ballots": 0,
"yay_ballots": 61,
"pass_ballots": 19,
"total_bakers": 218,
"supermajority_pct": 80,
"ballots_quorum_pct": 49.18,
"nay_voting_power_xtz": 0,
"yay_voting_power_xtz": 183636528.51415,
"pass_voting_power_xtz": 217850754.265983,
"total_voting_power_xtz": 656635662.773932
},
{
"kind": "testing",
"epoch": 90,
"index": 174,
"status": "success",
"end_time": "2026-06-01T13:34:43Z",
"last_level": 13454688,
"start_time": "2026-05-18T10:13:52Z",
"first_level": 13253089,
"total_bakers": 227,
"total_voting_power_xtz": 654590912.127942
},
{
"kind": "exploration",
"epoch": 90,
"index": 173,
"status": "success",
"nay_pct": 0,
"yay_pct": 26.6,
"end_time": "2026-05-18T10:13:46Z",
"pass_pct": 25.76,
"last_level": 13253088,
"start_time": "2026-05-04T05:45:19Z",
"first_level": 13051489,
"nay_ballots": 0,
"yay_ballots": 59,
"pass_ballots": 15,
"total_bakers": 231,
"supermajority_pct": 80,
"ballots_quorum_pct": 49.94,
"nay_voting_power_xtz": 0,
"yay_voting_power_xtz": 173646353.078757,
"pass_voting_power_xtz": 168134642.420994,
"total_voting_power_xtz": 652822150.860348
},
{
"kind": "proposal",
"epoch": 90,
"index": 172,
"status": "success",
"end_time": "2026-05-04T05:45:13Z",
"last_level": 13051488,
"start_time": "2026-04-20T02:14:55Z",
"first_level": 12849889,
"total_bakers": 232,
"upvotes_quorum_pct": 5,
"total_voting_power_xtz": 649330833.198396
…