Skip to content
GET /v1/transaction

Transaction detail 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/gnosis-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/gnosis-api/v1/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gnosis-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gnosis-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/gnosis-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": "0x01b4eA64E4204b51cbc8463FFC8e6046C9D70371",
            "from": "0xb2bf078b376b00628C000ceE7fbA63eA86C952EE",
            "hash": "0xcedbf7f06f9ea9d0f5bfa326c075f95385d16726e173784ae699c8f1c00fbe1d",
            "type": 0,
            "block": 35000000,
            "nonce": 775,
            "method": "transfer",
            "status": "ok",
            "fee_eth": 0.0006151104,
            "fee_wei": "615110400000000",
            "gas_used": 192222,
            "gas_price": "3200000000",
            "timestamp": "2024-07-16T19:13:55.000000Z",
            "value_eth": 0,
            "value_wei": "0",
            "confirmations": 11583168
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:55.289Z",
        "request_id": "4f5f878f-4c85-4cdd-aff4-806ac4f6c214"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}