Zum Inhalt springen
GET /v1/transaction

Transaction detail by hash

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/arbitrum-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/arbitrum-api/v1/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arbitrum-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arbitrum-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/arbitrum-api/v1/transaction",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "transaction": {
            "to": "0x00000000000000000000000000000000000A4B05",
            "from": "0x00000000000000000000000000000000000A4B05",
            "hash": "0x6d9e6dff49f56c21aec680f677e8d3a1dd76edeb9b0609a9512ed4b67334e2ad",
            "type": 106,
            "block": 200000000,
            "nonce": 0,
            "method": "startBlock",
            "status": "ok",
            "fee_eth": 0,
            "fee_wei": "0",
            "gas_used": 0,
            "gas_price": "10000000",
            "timestamp": "2024-04-11T19:09:12.000000Z",
            "value_eth": 0,
            "value_wei": "0",
            "confirmations": 271183161
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:19:01.305Z",
        "request_id": "7cdf4b57-ba7a-4344-bd68-eb07bd1069f5"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}