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/shibarium-api

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/shibarium-api/v1/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shibarium-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shibarium-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/shibarium-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": "0x0aa8A20a0E790bd16911460CdD75Bf62A4324aE3",
            "from": "0xE5eDBD1E25e79fb2F6fd3eaa3Bc692BD19bD500E",
            "hash": "0x22889413fb036e318cf59c0ef293e0948205e2794aad2f37014d58cd99aee47d",
            "type": 2,
            "block": 17595529,
            "nonce": 13392,
            "method": "transmit",
            "status": "ok",
            "fee_wei": "1312753654611",
            "fee_bone": 1.312753654611e-6,
            "gas_used": 119089,
            "gas_price": "11023299",
            "timestamp": "2026-06-08T11:26:23.000000Z",
            "value_wei": "0",
            "value_bone": 0,
            "confirmations": 4044
        }
    },
    "meta": {
        "timestamp": "2026-06-08T18:26:19.332Z",
        "request_id": "95df5051-8f3b-4a48-bf9c-c8e478e3ac0a"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}