Aller au contenu
GET /v1/transfers

Recent TRC20 token transfers

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/tron-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/tron-api/v1/transfers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tron-api/v1/transfers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tron-api/v1/transfers");
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/tron-api/v1/transfers",
    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": {
        "count": 10,
        "source": "TRON",
        "address": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
        "transfers": [
            {
                "to": "TGjmQxcRHwPJ3NKfPNs1zRkGWJDmMDQiE6",
                "from": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
                "time": "2026-04-09T02:11:27.000Z",
                "type": "Transfer",
                "token": "USDT",
                "tx_id": "cafc467846af002f34e5459f81720304c8cd89903773c700b7aaaf00066e2496",
                "amount": 0,
                "contract": "TQgktYKWXoVmGTJMMfJFDQxDDRyup9nDSt",
                "direction": "out",
                "value_raw": "0"
            },
            {
                "to": "TGjmQxcRHwPJ3NKfPNs1zRkGWJDmMDQiE6",
                "from": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
                "time": "2026-04-09T02:11:27.000Z",
                "type": "Transfer",
                "token": "USDT",
                "tx_id": "cafc467846af002f34e5459f81720304c8cd89903773c700b7aaaf00066e2496",
                "amount": 0,
                "contract": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
                "direction": "out",
                "value_raw": "0"
            },
            {
                "to": "TGjmQxcRHwPJ3NKfPNs1zRkGWJDmMDQiE6",
                "from": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
                "time": "2026-04-09T00:32:21.000Z",
                "type": "Transfer",
                "token": "USDT",
                "tx_id": "2c6ecdfe633a75ac950e87f922c815304d62510fa1e155b8724da05402683e4a",
                "amount": 1000,
                "contract": "TQgktYKWXoVmGTJMMfJFDQxDDRyup9nDSt",
                "direction": "out",
                "value_raw": "1000000000"
            },
            {
                "to": "TGjmQxcRHwPJ3NKfPNs1zRkGWJDmMDQiE6",
                "from": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
                "time": "2026-04-09T00:23:45.000Z",
                "type": "Transfer",
                "token": null,
                "tx_id": "f24db24f32b7f4340414c480ad5397134ffd375efa97c089b0912cc64d9d8544",
                "amount": 1000,
                "contract": null,
                "direction": "out",
                "value_raw": "1000000000"
            },
            {
                "to": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
                "from": "TJtEySoVuAkk3xwXghLgrUFVKSMq9JkE18",
                "time": "2026-03-24T10:15:30.000Z",
                "type": "Transfer",
                "token": "USDT",
                "tx_id": "56e240200b47565ead8701f531763a9838665b8e2716ed6a6253d12fe41b9b38",
                "amount": 1,
                "contract": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
                "direction": "in",
                "value_raw": "1000000"
            },
            {
                "to": "TNaRAoLUyYEV2uF7GUrzSjRQTU8v5ZJ5VR",
                "from": "TWBPGLwQw2EbqYLLw1DJnTDt2ZQ9yJW1JJ",
                "time": "2026-02-14T10:06:51.000Z",
                "type": "Tran
…