/v1/transaction
A transaction by hash
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/reya-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/reya-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/reya-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/reya-api/v1/transaction",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"transaction": {
"to": "0xED28d27dFcA47AD2513C9f2e2d3C098C2eA5A47F",
"from": "0xf9E50a2584CFBD3d23468A395114461E5154fD61",
"hash": "0x1e923ad12ada5b5b06e3cdf08c10a86aaf8a09697dd4caa846f160b100fc9236",
"type": 1,
"block": 153533149,
"nonce": 26014341,
"method": "tryAggregatePreservingError",
"status": "ok",
"fee_eth": 3.604746e-7,
"fee_wei": "360474600000",
"gas_used": 3604746,
"gas_price": "100000",
"timestamp": "2026-06-08T07:17:37.000000Z",
"value_eth": 0,
"value_wei": "0",
"confirmations": 20297
}
},
"meta": {
"timestamp": "2026-06-08T09:48:55.477Z",
"request_id": "7fee54dc-83fc-46a3-8bf0-7ec47141f798"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}