Naar de inhoud
GET /v1/producers

Block producers ranked by DPoS vote weight

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/eos-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/eos-api/v1/producers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eos-api/v1/producers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eos-api/v1/producers");
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/eos-api/v1/producers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 21,
        "source": "EOS",
        "producers": [
            {
                "url": "https://eosusa.io/bp/eos/",
                "name": "ivote4eosusa",
                "rank": 1,
                "location": 840,
                "vote_pct": 4.1754,
                "is_active": true,
                "total_votes": 3.626668481694804e+20,
                "unpaid_blocks": 1752
            },
            {
                "url": "https://www.eosphere.io",
                "name": "eosphereiobp",
                "rank": 2,
                "location": 36,
                "vote_pct": 4.1533,
                "is_active": true,
                "total_votes": 3.6074867295984733e+20,
                "unpaid_blocks": 4932
            },
            {
                "url": "https://eossupport.io",
                "name": "eossupportbp",
                "rank": 3,
                "location": 840,
                "vote_pct": 4.0932,
                "is_active": true,
                "total_votes": 3.5553495559334114e+20,
                "unpaid_blocks": 4152
            },
            {
                "url": "https://eostitan.com",
                "name": "eostitanprod",
                "rank": 4,
                "location": 0,
                "vote_pct": 4.074,
                "is_active": true,
                "total_votes": 3.538668935977051e+20,
                "unpaid_blocks": 2098
            },
            {
                "url": "https://eos.big.one",
                "name": "big.one",
                "rank": 5,
                "location": 392,
                "vote_pct": 4.0506,
                "is_active": true,
                "total_votes": 3.5182935546401325e+20,
                "unpaid_blocks": 3270
            },
            {
                "url": "https://newpool.io",
                "name": "newdex.bp",
                "rank": 6,
                "location": 392,
                "vote_pct": 4.0485,
                "is_active": true,
                "total_votes": 3.5164910207486e+20,
                "unpaid_blocks": 2187
            },
            {
                "url": "https://binance-eos.com",
                "name": "binancestake",
                "rank": 7,
                "location": 136,
                "vote_pct": 3.982,
                "is_active": true,
                "total_votes": 3.458762308738064e+20,
                "unpaid_blocks": 5327
            },
            {
                "url": "starteos.io",
                "name": "starteosiobp",
                "rank": 8,
                "location": 101,
                "vote_pct": 3.9609,
                "is_active": true,
                "total_votes": 3.440371034090553e+20,
                "unpaid_blocks": 2088
            },
            {
                "url": "https://eosnation.io",
                "name": "eosnationftw",
                "rank": 9,
                "location": 124,
                "vote_pct": 3.9518,
                "i
…