/v1/transaction
A transaction amount, gas, sender, recipient and receipt
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/zilliqa-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/zilliqa-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/zilliqa-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/zilliqa-api/v1/transaction",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"hash": "814a408c40e0694cf32d55caa7fa978555ef91f03b65c4e60c6a2ab51459a672",
"nonce": 173462,
"source": "Zilliqa",
"success": true,
"epoch_num": 8000000,
"gas_limit": 50,
"amount_zil": 16743.8,
"to_address": "8ec8e69ddfee14b0695301069e1a3c77afee98ee",
"gas_price_zil": 0.003,
"cumulative_gas": 50,
"sender_pub_key": "0x03418612da4ea914d985a234285ac3b2bee7f0986ef1440895d330f1b1beab813e"
},
"meta": {
"timestamp": "2026-06-10T13:59:58.657Z",
"request_id": "92f907e6-0df3-4442-bfec-eb0b19bebd04"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}