/v1/address
Address balance & contract info
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/zksync-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/zksync-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/zksync-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/zksync-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": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4",
"name": "zkSync Bridged USDC (zkSync)",
"token": {
"name": "zkSync Bridged USDC (zkSync)",
"type": "ERC-20",
"symbol": "USDC"
},
"creator": "0x689a1966931eB4Bb6fB81430E6ce0A03aABDf174",
"balance_eth": 0,
"balance_wei": "0",
"is_contract": true,
"is_verified": false
}
},
"meta": {
"timestamp": "2026-06-08T01:18:21.141Z",
"request_id": "7dd58f87-b960-452e-828a-b35baae22643"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}