Aller au contenu
GET /v1/transaction

Transaction detail

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/rss3-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/rss3-api/v1/transaction" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rss3-api/v1/transaction", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rss3-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/rss3-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": "0xE06Af68F0c9e819513a6CD083EF6848E76C28CD8",
            "from": "0xe53a81CCB79a161345E5b6BD6C4E9cE352ed2876",
            "hash": "0xcd13f37d77eefb04f9b5a773cadb84245c43e1861a68f9e9da96035191bba8ed",
            "type": 2,
            "block": 33101370,
            "nonce": 130,
            "method": "transfer",
            "status": "ok",
            "fee_wei": "59712614933850",
            "fee_rss3": 5.971261493385e-5,
            "gas_used": 61317,
            "gas_price": "1000050",
            "timestamp": "2026-04-13T06:20:59.000000Z",
            "value_wei": "0",
            "value_rss3": 0,
            "confirmations": 763752
        }
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:17.684Z",
        "request_id": "cd1996b3-b158-428f-8e8a-9e6c927b3a4c"
    },
    "status": "ok",
    "message": "Transaction retrieved successfully",
    "success": true
}