Skip to content
GET /v1/bakers

Active bakers ranked by staked balance

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/tezosbakers-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/tezosbakers-api/v1/bakers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosbakers-api/v1/bakers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosbakers-api/v1/bakers");
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/tezosbakers-api/v1/bakers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Active Tezos bakers ranked by staked balance (in XTZ). delegated_xtz is the balance delegated to them; fee is the baker's commission.",
        "count": 20,
        "bakers": [
            {
                "fee": null,
                "alias": null,
                "active": true,
                "address": "tz1cJTktkAEhxyWZAyQrjcqZJ3BeQYyQMvBt",
                "stakers": 0,
                "delegators": 2,
                "staked_xtz": 20543376.389555,
                "balance_xtz": 20549966.145865,
                "delegated_xtz": 2.220181
            },
            {
                "fee": null,
                "alias": "Coinbase Baker",
                "active": true,
                "address": "tz1irJKkXS2DBWkU1NnmFQx1c1L7pbGg4yhk",
                "stakers": 0,
                "delegators": 2809,
                "staked_xtz": 13259662.2122,
                "balance_xtz": 14655661.275982,
                "delegated_xtz": 86520569.84476
            },
            {
                "fee": null,
                "alias": null,
                "active": true,
                "address": "tz3W7k9v3uniY1f2HQRKxymJybNvH3FgvZ5N",
                "stakers": 0,
                "delegators": 1,
                "staked_xtz": 8134288.899955,
                "balance_xtz": 8134651.70262,
                "delegated_xtz": 0.1
            },
            {
                "fee": null,
                "alias": "Tezos Foundation Baker 4",
                "active": true,
                "address": "tz3UQN6nBQHofmgQ3pZannhiYE2CT7TEZFim",
                "stakers": 5,
                "delegators": 6,
                "staked_xtz": 5748159.315512,
                "balance_xtz": 8059323.957814,
                "delegated_xtz": 11725392.391377
            },
            {
                "fee": null,
                "alias": "TenX Protocols Baker",
                "active": true,
                "address": "tz1NZMY994zzvGoccJzU3AXvveNe1EUMg8rq",
                "stakers": 1,
                "delegators": 4,
                "staked_xtz": 5679236.886665,
                "balance_xtz": 5690705.905843,
                "delegated_xtz": 1896338.060024
            },
            {
                "fee": null,
                "alias": "Tezos Foundation Baker 3",
                "active": true,
                "address": "tz3UC5hM9uCUiqmAw1pHdxjAdGueQMd8u3wf",
                "stakers": 4,
                "delegators": 7,
                "staked_xtz": 5672451.799932,
                "balance_xtz": 7979578.448611,
                "delegated_xtz": 14090269.167977
            },
            {
                "fee": null,
                "alias": "Tezos Foundation Baker 1",
                "active": true,
                "address": "tz3cqThj23Feu55KDynm7Vg81mCMpWDgzQZq",
                "stakers": 5,
                "delegators": 17,
                "staked_xtz": 5369170.596098,
                "balance_xtz": 8302629.81692,
                "delegat
…