Skip to content
GET /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.

Custom headers (optional)
api.oanor.com/hyperevm-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/hyperevm-api/v1/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hyperevm-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hyperevm-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/hyperevm-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": "0xb0078F7a0E534eF70B064a9433F96000082Ae854",
            "from": "0x5B4267572FED452E1f5dd8cAB59Ec36644e6bd32",
            "hash": "0x79e1b7259ad31e48c8714f9b5afbd65d0d38597d1b75620e85860d185e513a7d",
            "type": 2,
            "block": 37247338,
            "nonce": 934,
            "method": null,
            "status": "ok",
            "fee_wei": "8163810418081248",
            "fee_hype": 0.008163810418081247,
            "gas_used": 1809648,
            "gas_price": "4511269826",
            "timestamp": "2026-06-08T04:13:57.000000Z",
            "value_wei": "0",
            "value_hype": 0,
            "confirmations": 20506
        }
    },
    "meta": {
        "timestamp": "2026-06-08T09:50:07.858Z",
        "request_id": "c5ab71e9-3ddd-42e4-8c5b-14963181a927"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}