Vai al contenuto
GET /v1/network

Live Dogecoin chain state, tip and fees

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/dogecoin-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "chain": "dogecoin",
        "source": "Dogecoin",
        "tip_hash": "200dd805839fdbd1621d75884afdbe7c31b40da3d8b4afa998d3670b2b5b9c6e",
        "peer_count": 168,
        "tip_height": 6243022,
        "previous_hash": "00464d63b3dfec81484a99900e3320db82b1e379f9d9100e9751a30c959ea4c0",
        "fees_per_kb_doge": {
            "low": 0.07469595,
            "high": 2.25519451,
            "medium": 0.59150324
        },
        "last_fork_height": 6241887,
        "fees_per_kb_koinu": {
            "low": 7469595,
            "high": 225519451,
            "medium": 59150324
        },
        "latest_block_time": "2026-06-10T14:01:28.023758299Z",
        "unconfirmed_tx_count": 13
    },
    "meta": {
        "timestamp": "2026-06-10T14:01:42.796Z",
        "request_id": "c137a3a1-f032-44fa-88bc-442bf4aac290"
    },
    "status": "ok",
    "message": "Network state retrieved successfully",
    "success": true
}