Vai al contenuto
GET /v1/account

An address state + delegation

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tezos-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "type": "user",
        "source": "Tezos (TzKT)",
        "address": "tz1Ke2h7sDdakHJQh8WX4Z372du1KChsksyU",
        "delegate": null,
        "xtz_balance": 534853.889891,
        "last_activity": "2026-06-09T20:21:40Z",
        "first_activity": "2018-06-30T17:39:57Z",
        "staked_balance": 0,
        "num_activations": 0,
        "num_transactions": 220837
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:40.010Z",
        "request_id": "56e3f5e5-89b5-4c46-ae84-8dd9ae59044a"
    },
    "status": "ok",
    "message": "Account retrieved successfully",
    "success": true
}