Zum Inhalt springen
GET /v1/transaction

Transaction detail

Live testen

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

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

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

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}