/v1/transaction
Transaction detail
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/flow-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flow-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flow-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/flow-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": "0x991B9087F2555395115288d1cabeF27e012dC011",
"from": "0x3Fa1Cc4501EF596eae1670BDA5c0aFfDB374B9b3",
"hash": "0xbfaf8aeaa5df7e56d522ef5295ff33491a0f067cb9f085fa3bea2345eb6f7930",
"type": 2,
"block": 68136057,
"nonce": 47140,
"method": "0xbd591a82",
"status": "ok",
"fee_wei": "609256000000",
"fee_flow": 6.09256e-7,
"gas_used": 609256,
"gas_price": "1000000",
"timestamp": "2026-06-08T12:50:02.000000Z",
"value_wei": "0",
"value_flow": 0,
"confirmations": 25159
}
},
"meta": {
"timestamp": "2026-06-08T18:25:42.142Z",
"request_id": "9fb169e7-dc68-4731-9676-b14b63c38807"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}