Naar de inhoud
GET /v1/witnesses

Witnesses ranked by vote weight, with HP, missed blocks, version, price feed

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "note": "Hive witnesses ranked by vote weight. The top 20 (plus a rotating backup) produce blocks. votes_hp is the staked HIVE Power backing the witness; total_missed counts skipped block slots; price_feed_hbd is the witness's published HBD price.",
        "count": 21,
        "source": "Hive RPC",
        "witnesses": [
            {
                "url": "https://hive.blog/hive-174578/@ocd/original-content-decentralized-hive-statement",
                "rank": 1,
                "owner": "ocd-witness",
                "votes_hp": 100522708,
                "is_active": true,
                "last_block": 107270471,
                "votes_vests": 163087817149.97232,
                "total_missed": 1381,
                "price_feed_hbd": 0.049,
                "running_version": "1.28.3",
                "hbd_interest_rate": 1200,
                "maximum_block_size": 65536,
                "account_creation_fee": "3.000 HIVE"
            },
            {
                "url": "https://gtg.openhive.network",
                "rank": 2,
                "owner": "gtg",
                "votes_hp": 99926055,
                "is_active": true,
                "last_block": 107270462,
                "votes_vests": 162119808506.45044,
                "total_missed": 989,
                "price_feed_hbd": 0.049,
                "running_version": "1.28.3",
                "hbd_interest_rate": 1000,
                "maximum_block_size": 65536,
                "account_creation_fee": "3.000 HIVE"
            },
            {
                "url": "https://peakd.com/witness-category/@stoodkev/witness-update-running-v1-24-2",
                "rank": 3,
                "owner": "stoodkev",
                "votes_hp": 98360470,
                "is_active": true,
                "last_block": 107270446,
                "votes_vests": 159579807231.76184,
                "total_missed": 562,
                "price_feed_hbd": 0.053,
                "running_version": "1.28.3",
                "hbd_interest_rate": 1000,
                "maximum_block_size": 65536,
                "account_creation_fee": "3.000 HIVE"
            },
            {
                "url": "https://peakd.com/@peakd",
                "rank": 4,
                "owner": "steempeak",
                "votes_hp": 97997012,
                "is_active": true,
                "last_block": 107270450,
                "votes_vests": 158990134412.48004,
                "total_missed": 139,
                "price_feed_hbd": 0.049,
                "running_version": "1.28.3",
                "hbd_interest_rate": 1000,
                "maximum_block_size": 65536,
                "account_creation_fee": "3.000 HIVE"
            },
            {
                "url": "https://peakd.com/witness-category/@arcange/witness-update-202103",
                "rank": 5,
                "owner": "arcange",
                "votes_hp": 97996276,
                "is_active": true,
      
…