Skip to content
GET /v1/transfers

A token's most recent transfers, decoded

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/trc20-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/trc20-api/v1/transfers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trc20-api/v1/transfers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trc20-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/trc20-api/v1/transfers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "The token's most recent TRC-20 transfers, decoded into from / to / amount (raw integer). This is the token's transfer feed, not a single wallet's.",
        "count": 20,
        "total": 10000,
        "source": "TronScan",
        "contract": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
        "transfers": [
            {
                "to": "TU3PYfKxNLb4kUVTmimtZHPGxqzW7g1W8L",
                "from": "TEbfjUjsQudgJVPeVSbZsBx4RYqWsoQAmP",
                "block": 83584976,
                "amount": "9619999",
                "confirmed": false,
                "timestamp": 1781424240000,
                "transaction_id": "3c3c27dd6346abc4478fa4c9c05fed8cb57ab2b94698c02005590a8e9189608a"
            },
            {
                "to": "TXe31JpKEjb9Jr1sqNnSssD6gTZd9RHUtJ",
                "from": "TBm4GqjqYsKKLjSJhxwPUqn927qDGhAbj7",
                "block": 83584976,
                "amount": "7001000000",
                "confirmed": false,
                "timestamp": 1781424240000,
                "transaction_id": "90558e61c042ccae2cfb02bb930433a715c8553fdbc0b301d81b5483f7e9b540"
            },
            {
                "to": "TGemQhixbXegnw5AucUL5bhisZwVaJFU7A",
                "from": "TEVbXxJ9mCnv1jWaaTBmCx5bpEpv67rb2U",
                "block": 83584976,
                "amount": "1701050000",
                "confirmed": false,
                "timestamp": 1781424240000,
                "transaction_id": "6817ee8e49dbb2c8d4c3795b55d71ae1f7c605f2a366af615a3910a06d6d779b"
            },
            {
                "to": "TVv5WViURydvCVbTzXMyBYvduErNnJSC5b",
                "from": "TLk9o9sdMmtx27mGhWuaWet4nV4eDfBp2R",
                "block": 83584976,
                "amount": "231000000",
                "confirmed": false,
                "timestamp": 1781424240000,
                "transaction_id": "7e940c2543713363c71501eb08f7f080e64292d2919c68e21f1ffa7985425ec4"
            },
            {
                "to": "TTaJTS6M6ihgYXPBAmxE48h4p6SPyybVYM",
                "from": "TCfvdBVA6U6DdYm27mLheVvSjMD7dyhZ1y",
                "block": 83584976,
                "amount": "10000000",
                "confirmed": false,
                "timestamp": 1781424240000,
                "transaction_id": "5fb79ef26178251a8c0c6f9d93314a618b88e41e4b2d2ab86efa0b5a14523f2d"
            },
            {
                "to": "TRpoEJk9XAS5LiV3ybaWtLFpPNYomY9LwX",
                "from": "TQw6rHJNzGMJ9VjTZrbGVHkvnq4Vif7YDH",
                "block": 83584976,
                "amount": "140000000",
                "confirmed": false,
                "timestamp": 1781424240000,
                "transaction_id": "053dcf444936fd0a3b1c3417ae7af995e0bac73a5f672aef482499089dcb098c"
            },
            {
                "to": "TVsNtUobZjL3DkWTzS58D1tAUgJXyW3Jyy",
                "from": "TPTLx3Z7bokUW5YUQjeifLDkqX4x56zQAB",
                "block": 83584976,
                "amount": "25900000",
                "c
…