/v1/address
Address detail with ETH 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/shape-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shape-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shape-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/shape-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": "0xdb7DD8B00EdC5778Fe00B2408bf35C7c054f8BBe",
"name": "FiatTokenProxy",
"token": {
"name": "Shape Bridged USDC (Shape)",
"type": "ERC-20",
"symbol": "USDC.E"
},
"creator": "0xc326A6157a5A66A968689aE13EEE0C8078062886",
"balance_eth": 0,
"balance_wei": "0",
"is_contract": true,
"is_verified": true
}
},
"meta": {
"timestamp": "2026-06-08T09:51:38.075Z",
"request_id": "27e5c8d5-5d22-4723-bc99-bb0896a4112e"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}