/v1/transaction
Transaction detail
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bittensor-api/v1/transaction" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bittensor-api/v1/transaction", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bittensor-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/bittensor-api/v1/transaction",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"transaction": {
"to": "0x94C262216A8111d208433Ad48Fcdc05831D60AFB",
"from": "0x54D435009Ee265d5967cc1Ed8b37cf8426De1149",
"hash": "0xcac2d5925b18fbb0e7f96b89aefb7a2e01281c79d68d494fe4a67f03a02be97f",
"type": 2,
"block": 8362246,
"nonce": 304883,
"method": "0x5001f15e",
"status": "ok",
"fee_tao": 0.00058484,
"fee_wei": "584840000000000",
"gas_used": 58484,
"gas_price": "10000000000",
"timestamp": "2026-06-08T13:29:48.000000Z",
"value_tao": 0,
"value_wei": "0",
"confirmations": 1478
}
},
"meta": {
"timestamp": "2026-06-08T18:25:23.466Z",
"request_id": "fc272a89-21bb-416e-8f79-bf83b81a0303"
},
"status": "ok",
"message": "Transaction retrieved successfully",
"success": true
}