Aller au contenu
GET /v1/baker

Full profile of one baker

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/tezosbakers-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "fee": null,
        "note": "Full profile of a Tezos baker from TzKT: balances (in XTZ), stakers, delegation, commission and activity.",
        "alias": "Everstake",
        "active": true,
        "source": "TzKT",
        "address": "tz1aRoaRhSpRYvFdyvgWLL6TGyRoGF51wDjM",
        "stakers": 482,
        "revealed": true,
        "delegators": 60361,
        "public_key": "edpkuNVuqdPhCsrYqkq21qW2hYTSZWMjQQjfyogoPZ2AfqCmonziNh",
        "staked_xtz": 4914558.250282,
        "balance_xtz": 6840252.762747,
        "delegated_xtz": 33530350.076258,
        "last_activity": "2026-06-14T08:03:49Z",
        "first_activity": "2020-03-11T14:46:57Z",
        "total_staked_xtz": 10682031.746944,
        "external_staked_xtz": 5767473.496662
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:54.725Z",
        "request_id": "1a131d74-907a-475e-8035-ddec5336527e"
    },
    "status": "ok",
    "message": "Baker retrieved successfully",
    "success": true
}