/v1/address
An address FIL balance and (if a provider) storage power
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/filecoin-api/v1/address" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/filecoin-api/v1/address", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/filecoin-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/filecoin-api/v1/address",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": "f02620",
"actor": "storageminer",
"source": "Filecoin",
"address": "f02620",
"storage": {
"owner": {
"address": "f3wnmzhu5iln7shuawotkmbaejf6oabp7dits4t4p6zvwxeomqgewjpmp4ho4oyuxuga2gzwe7eu2nmw4prsjq",
"balance": "4601544414673604093686"
},
"worker": {
"address": "f3wnmzhu5iln7shuawotkmbaejf6oabp7dits4t4p6zvwxeomqgewjpmp4ho4oyuxuga2gzwe7eu2nmw4prsjq",
"balance": "4601544414673604093686"
},
"raw_power_pib": 0.2939,
"sector_size_gib": 32,
"quality_power_pib": 0.953
},
"balance_fil": 12613.915603,
"message_count": 46765,
"created_height": 64,
"last_seen_height": 6092988,
"is_storage_provider": true
},
"meta": {
"timestamp": "2026-06-10T14:00:15.373Z",
"request_id": "b8122c85-8d8a-44f1-997b-d90888a27dfa"
},
"status": "ok",
"message": "Address retrieved successfully",
"success": true
}