Ir al contenido
GET /v1/transaction

A transaction by hash

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/fuse-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/fuse-api/v1/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fuse-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fuse-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/fuse-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": {
        "transaction": {
            "to": "0x6E055FfA786Dfe9DBB214b649a9b2A169e6B820b",
            "from": "0xA7fac65aF373771894B8f22d75dadd150da756B8",
            "hash": "0x98bcfe6d7385574070ba52ae5f387122ebfc4c9bbba87b9618eef3c8eb58020a",
            "type": 2,
            "block": 42381076,
            "nonce": 442076,
            "method": "exactInputSingle",
            "status": "ok",
            "fee_wei": "3120820000000000",
            "fee_fuse": 0.00312082,
            "gas_used": 156041,
            "gas_price": "20000000000",
            "timestamp": "2026-06-08T05:56:55.000000Z",
            "value_wei": "0",
            "value_fuse": 0,
            "confirmations": 2791
        }
    },
    "meta": {
        "timestamp": "2026-06-08T09:49:29.481Z",
        "request_id": "34f4f0e9-5b43-4411-8175-a20ce9d89849"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}