/v1/address
Address detail with IP balance
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/story-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/story-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/story-api/v1/address");
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/story-api/v1/address",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"address": {
"ens": null,
"hash": "0xF1815bd50389c46847f0Bda824eC8da914045D14",
"name": "Stargate Bridged USDC",
"token": {
"name": "Stargate Bridged USDC",
"type": "ERC-20",
"symbol": "USDC.E"
},
"creator": "0x565786AbE5BA0f9D307AdfA681379F0788bEdEf7",
"balance_ip": 0,
"balance_wei": "0",
"is_contract": true,
"is_verified": true
}
},
"meta": {
"timestamp": "2026-06-08T09:51:10.502Z",
"request_id": "ec633b59-43bf-4a45-89b6-e2a73de971d3"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}