/v1/meta
Service metadata and endpoint catalog
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/dogecoin-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogecoin-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogecoin-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"source": "BlockCypher Dogecoin explorer API (live)",
"service": "dogecoin-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "A block's details (height=latest|N|hash).",
"GET /v1/address": "An address's DOGE balance + history (address=DH5yaieqoZN36fDVciNyRueRGvGLR3mr7L).",
"GET /v1/network": "Live tip, fees and unconfirmed count.",
"GET /v1/transaction": "A transaction's value, fee and confirmations (id=64 hex)."
},
"tip_height": 6243022,
"description": "Live on-chain data from the Dogecoin network (DOGE), the original meme cryptocurrency, a proof-of-work UTXO chain with 1-minute blocks and Scrypt merged-mining, via the public BlockCypher explorer. The address endpoint returns an address's confirmed DOGE balance, total received and sent, transaction count and any unconfirmed balance; the transaction endpoint returns a transaction's total value, fee, size, input/output counts and confirmation status; the block endpoint returns a block's height, hash, timestamp, transaction count, total value, fees and size; the network endpoint returns the tip height and hash, recommended fee rates and unconfirmed transaction count. Live, no key, nothing stored. Distinct from the Bitcoin, Litecoin, Kaspa, XRP Ledger, Cardano, Hedera, Cosmos, Sui, NEAR, MultiversX, Starknet, Solana and EVM on-chain APIs and from price feeds — this is Dogecoin's UTXO address state, transactions, blocks and fees.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T14:01:43.773Z",
"request_id": "9a51b959-14b2-41da-843b-f10b5a70c941"
},
"status": "ok",
"message": "Meta",
"success": true
}