/v1/providers
RPC providers staked to serve a chain
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/lava-api/v1/providers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lava-api/v1/providers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lava-api/v1/providers");
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/lava-api/v1/providers",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"chain": "lava-mainnet-1",
"count": 20,
"providers": [
{
"stake": 29899,
"jailed": true,
"address": "lava@1faw4qh665t2aq4v5pezyfljsfgjedcexvg8725",
"moniker": "rodion",
"geolocation": 2,
"delegate_total": 264590.400368,
"endpoint_count": 1,
"delegate_commission": 50
},
{
"stake": 13216.346671,
"jailed": true,
"address": "lava@1ug53ytuc9ceehfsl2560lgd6t65fegudg34l2d",
"moniker": "Stake Village",
"geolocation": 35,
"delegate_total": 351993.709613,
"endpoint_count": 7,
"delegate_commission": 75
},
{
"stake": 7241.676316,
"jailed": false,
"address": "lava@1dtwmc4vxkj0kl8v2vu6gtc458tsw0hr0f647p0",
"moniker": "marisarze",
"geolocation": 2,
"delegate_total": 52545.004656,
"endpoint_count": 1,
"delegate_commission": 50
},
{
"stake": 6522.850872,
"jailed": true,
"address": "lava@1gvwswcf0u3hfuxvlsvq88r90587t7snk20q0w3",
"moniker": "Mrs_ml",
"geolocation": 2,
"delegate_total": 451512.044093,
"endpoint_count": 1,
"delegate_commission": 50
},
{
"stake": 6000,
"jailed": false,
"address": "lava@1czd295zh6pjfrxr4v36tgy9s3qppgt43htyyud",
"moniker": "Bit Cat🐱",
"geolocation": 2,
"delegate_total": 14301.737592,
"endpoint_count": 1,
"delegate_commission": 75
},
{
"stake": 5572,
"jailed": true,
"address": "lava@186clvlafr09wns57cxlc4rfesf90rjw6vy807u",
"moniker": "NodesHub",
"geolocation": 2,
"delegate_total": 150246.110846,
"endpoint_count": 1,
"delegate_commission": 75
},
{
"stake": 5060.909091,
"jailed": true,
"address": "lava@1dnyhue0cmhr27fyqhwar97s906qpqdycvzadek",
"moniker": "Totty Fruity",
"geolocation": 2,
"delegate_total": 99960.794695,
"endpoint_count": 1,
"delegate_commission": 75
},
{
"stake": 5000,
"jailed": false,
"address": "lava@130peft02zn65u7jvqn6mkattjyyqrpmv76kvra",
"moniker": "Packethost",
"geolocation": 2,
"delegate_total": 0,
"endpoint_co
…