/v1/address
Address balance & contract info
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}