/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/apechain-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apechain-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apechain-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/apechain-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": "0x0000000071727De22E5E9d8BAf0edAc6f37da032",
"from": "0xCfdEe1E80f67d45761F321f3c9eCB28AAe769810",
"hash": "0x85c930da7249b62653992c5c695e1e93aedcb5b0048f4679bb161037f72e752d",
"type": 2,
"block": 39379419,
"nonce": 84687,
"method": "handleOps",
"status": "ok",
"fee_ape": 0.0258645352474,
"fee_wei": "25864535247400000",
"gas_used": 254365,
"gas_price": "101682760000",
"timestamp": "2026-06-08T07:03:33.000000Z",
"value_ape": 0,
"value_wei": "0",
"confirmations": 6739
}
},
"meta": {
"timestamp": "2026-06-08T09:49:01.863Z",
"request_id": "37b07735-f012-40c2-9f0b-d65f1986f28e"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}