/v1/account
Stake account state + delegation
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}