/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/world-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/world-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/world-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/world-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": "0x4200000000000000000000000000000000000015",
"from": "0xDeaDDEaDDeAdDeAdDEAdDEaddeAddEAdDEAd0001",
"hash": "0xb40c5b5259cd0638cee36e2b4c35a2e8a60fca830040ccbd29a5598f79c78d42",
"type": 126,
"block": 30775180,
"nonce": 30775183,
"method": "setL1BlockValuesJovian",
"status": "ok",
"fee_eth": 0,
"fee_wei": "0",
"gas_used": 46230,
"gas_price": "0",
"timestamp": "2026-06-08T02:33:19.000000Z",
"value_eth": 0,
"value_wei": "0",
"confirmations": 13134
}
},
"meta": {
"timestamp": "2026-06-08T09:51:07.379Z",
"request_id": "fa579a6a-260d-4fa5-ab21-69bea2eabbf7"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}