/v1/account
Stake account state + delegation
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/cardano-api/v1/account" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cardano-api/v1/account", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cardano-api/v1/account");
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/cardano-api/v1/account",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Cardano (Koios)",
"status": "registered",
"deposit_ada": 2,
"stake_address": "stake1uyx0ut5wc5nmu0tacjc9pyyahdyq5ujghwljkdxrpfw5vecnyn4gg",
"delegated_drep": "drep_always_abstain",
"delegated_pool": "pool1fl20ddkpvnstlx63fal6e3ku46r76nk2s4mqtk5jnyxn2vt7hg6",
"withdrawals_ada": 68992.703144,
"utxo_balance_ada": 451044.763493,
"total_balance_ada": 459732.355168,
"rewards_lifetime_ada": 77616.319214,
"rewards_available_ada": 8687.591675
},
"meta": {
"timestamp": "2026-06-09T20:24:36.041Z",
"request_id": "fbc7381e-da62-4545-b4c4-ab400051a9e8"
},
"status": "ok",
"message": "Account retrieved successfully",
"success": true
}