/v1/transactions
Recent transactions
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/aptos-api/v1/transactions" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptos-api/v1/transactions", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptos-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/aptos-api/v1/transactions",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 10,
"source": "Aptos",
"address": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
"transactions": [
{
"hash": "0xd17c9e4ecaa7d6095eb288661e30398bb11df6a30f2c5b799426a2c68949d764",
"time": "2026-05-11T11:19:27.127Z",
"type": "user_transaction",
"sender": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
"success": true,
"version": "5222674214",
"function": "0x50ead22afd6ffd9769e3b3d6e0e64a2a350d68e8b102c4e72e33d0b8cfdfdb06::dex_accounts_entry::cancel_order_to_subaccount",
"gas_used": 229,
"vm_status": "Executed successfully"
},
{
"hash": "0xd4c680d9a55653df00d7a8ebe89278ecad2995b288c6b44ce42b17e897e668a4",
"time": "2026-05-11T11:19:29.168Z",
"type": "user_transaction",
"sender": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
"success": true,
"version": "5222674548",
"function": "0x50ead22afd6ffd9769e3b3d6e0e64a2a350d68e8b102c4e72e33d0b8cfdfdb06::dex_accounts_entry::cancel_order_to_subaccount",
"gas_used": 223,
"vm_status": "Executed successfully"
},
{
"hash": "0x920c41810fc3dd7dd2ae1542edf596f4fb22caccbb927a6d8a2b3ab8634a7d7b",
"time": "2026-05-11T11:19:30.518Z",
"type": "user_transaction",
"sender": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
"success": true,
"version": "5222674775",
"function": "0x50ead22afd6ffd9769e3b3d6e0e64a2a350d68e8b102c4e72e33d0b8cfdfdb06::dex_accounts_entry::cancel_order_to_subaccount",
"gas_used": 221,
"vm_status": "Executed successfully"
},
{
"hash": "0x350b179516b1ddbc8b0b382320971459f7570e01d68598c9a78c7b603bf17e98",
"time": "2026-05-11T11:19:32.478Z",
"type": "user_transaction",
"sender": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
"success": true,
"version": "5222675047",
"function": "0x50ead22afd6ffd9769e3b3d6e0e64a2a350d68e8b102c4e72e33d0b8cfdfdb06::dex_accounts_entry::cancel_order_to_subaccount",
"gas_used": 237,
"vm_status": "Executed successfully"
},
{
"hash": "0x522b7946cd5f0b6071abc34dfc79495c208feb86f0f8d5bd01e7ed78cf9d890d",
"time": "2026-05-11T11:19:34.956Z",
"type": "user_transaction",
"sender": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
"success": true,
…