/v1/address
Address detail with ETH balance
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/perennial-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/perennial-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/perennial-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/perennial-api/v1/address",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"address": {
"ens": null,
"hash": "0x39CD9EF9E511ec008247aD5DA01245D84a9521be",
"name": "Bridged USDC",
"token": {
"name": "Bridged USDC",
"type": "ERC-20",
"symbol": "USDC.e"
},
"creator": "0x86BbC2ad0E1dc31E4287bfeD65e3E3D0dC7aC9Df",
"balance_eth": 0,
"balance_wei": "0",
"is_contract": true,
"is_verified": true
}
},
"meta": {
"timestamp": "2026-06-08T09:50:11.904Z",
"request_id": "2d1c2bca-1e39-46ba-93ea-fa745a834937"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}