/v1/transaction
Transaction detail
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/lukso-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lukso-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lukso-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/lukso-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": "0x3983151E0442906000DAb83c8b1cF3f2D2535F82",
"from": "0xfeDc830E079C1Fb25b801713188D425Da0237e81",
"hash": "0xbe4e1aba470f879626a526ae92cdc25a32da387aa0ddb48cf1ae4df7c440a6c2",
"type": 0,
"block": 7708061,
"nonce": 212818,
"method": "refine",
"status": "ok",
"fee_lyx": 0.002223060141539636,
"fee_wei": "2223060141539636",
"gas_used": 40169444,
"gas_price": "55342069",
"timestamp": "2026-06-08T12:17:12.000000Z",
"value_lyx": 0,
"value_wei": "0",
"confirmations": 1735
}
},
"meta": {
"timestamp": "2026-06-08T18:25:56.754Z",
"request_id": "4ef0ce38-d425-404c-8da5-09aa4b8eabe3"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}