Naar de inhoud
GET /v1/transaction

Transaction detail

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/flow-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "transaction": {
            "to": "0x991B9087F2555395115288d1cabeF27e012dC011",
            "from": "0x3Fa1Cc4501EF596eae1670BDA5c0aFfDB374B9b3",
            "hash": "0xbfaf8aeaa5df7e56d522ef5295ff33491a0f067cb9f085fa3bea2345eb6f7930",
            "type": 2,
            "block": 68136057,
            "nonce": 47140,
            "method": "0xbd591a82",
            "status": "ok",
            "fee_wei": "609256000000",
            "fee_flow": 6.09256e-7,
            "gas_used": 609256,
            "gas_price": "1000000",
            "timestamp": "2026-06-08T12:50:02.000000Z",
            "value_wei": "0",
            "value_flow": 0,
            "confirmations": 25159
        }
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:42.142Z",
        "request_id": "9fb169e7-dc68-4731-9676-b14b63c38807"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}