Naar de inhoud
GET /v1/transactions

Recent system transactions

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "count": 10,
        "source": "TRON",
        "address": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
        "transactions": [
            {
                "time": "2026-06-07T02:23:33.000Z",
                "type": "TransferAssetContract",
                "block": 83376625,
                "tx_id": "4c61c24677575a04cfba7bb5f8021bf3ddc71deedc92940b13b98ebee8b10486",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-03-18T17:40:45.000Z",
                "type": "UnDelegateResourceContract",
                "block": 81062875,
                "tx_id": "3c9bedb95063fa3b6d42c1f1d9b67adb2ca0801a5643974ef2ea82310d1fc99e",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-03-18T16:40:42.000Z",
                "type": "DelegateResourceContract",
                "block": 81061674,
                "tx_id": "720350df0c9aa4b5f859eaeaec1921cd02b048610d586d3419f289aa7fc5cdb3",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-03-11T11:01:33.000Z",
                "type": "TransferContract",
                "block": 80853351,
                "tx_id": "4270cd48d26b9d21729d43abbbbb7b0faf52978443254c5dee4bd846e914c9ee",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-02-08T17:37:54.000Z",
                "type": "TransferAssetContract",
                "block": 79969218,
                "tx_id": "cbdb4e4cff5d85d05315761fd8cd9697962e9e05333a92813e6bb35ccc00d27a",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-01-20T23:53:39.000Z",
                "type": "TransferContract",
                "block": 79429789,
                "tx_id": "882b00788b5ab95d54fc253c7f3c5dcee4531e32108670fa5e950fcbdaee6065",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-01-10T13:29:24.000Z",
                "type": "TransferContract",
                "block": 79129541,
                "tx_id": "f3f13e89965321ab266e5770d25a30964ed2ddd7aa6c76fac46dde8b2db1a44b",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-01-08T15:33:42.000Z",
                "type": "TransferContract",
                "block": 79074443,
                "tx_id": "c636dd8147b43a37eae1860550af92345abba92a0f4223ec614e2a16e4d66568",
                "result": "SUCCESS",
                "contract_count": 1
            },
            {
                "time": "2026-01-08T15:32:06.000Z",
                "type": "TransferContract",
                "block": 79074411,
                "tx_id": "ea1b8129c5c336cba58d7d2c8d943f1703e3b522bd5a6c2
…