/v1/transaction
Transaction detail
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/homeverse-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/homeverse-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/homeverse-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/homeverse-api/v1/transaction",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"transaction": {
"to": "0x3c2269811836af69497E5F486A85D7316753cf62",
"from": "0x339d413CCEfD986b1B3647A9cfa9CBbE70A30749",
"hash": "0x7c317d8bca7a841b2ab91c56dbced386035ea1f35e97a1442e2cd99617ae5b9c",
"type": null,
"block": 2268348,
"nonce": 1528860,
"method": "0x7dc438a4",
"status": "ok",
"fee_oas": 0,
"fee_wei": "0",
"gas_used": 43152,
"gas_price": "0",
"timestamp": "2026-06-08T12:56:10.000000Z",
"value_oas": 0,
"value_wei": "0",
"confirmations": 533
}
},
"meta": {
"timestamp": "2026-06-08T18:25:37.566Z",
"request_id": "e0f424a1-ddfd-4d44-9d0d-407b9c1ff537"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}