/v1/transaction
A transaction value, fee and confirmations
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/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dogecoin-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dogecoin-api/v1/transaction");
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/transaction",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"size": 94,
"txid": "c72557f551216ee3e534b4fe09ad4ec257d33dfb4d7a7cb00f94bad870ae3a08",
"source": "Dogecoin",
"fee_doge": 0,
"confirmed": true,
"fee_koinu": 0,
"total_doge": 10297.68408048,
"input_count": 1,
"block_height": 5000000,
"confirmed_at": "2023-12-10T06:04:05.757Z",
"double_spend": false,
"output_count": 1,
"confirmations": 1243023
},
"meta": {
"timestamp": "2026-06-10T14:01:43.286Z",
"request_id": "d059ced9-a659-4e82-8846-a1b17ed7bbd3"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}