Jump to
Ctrl
+
/

List Confirmed Tokens Transfers By Address EVM

GET
/addresses-latest/evm/{blockchain}/{network}/{address}/tokens-transfers

Through this endpoint customers can obtain a list with confirmed token transfers by the address attribute. Token transfers may include information such as addresses of the sender and recipient, token name, token symbol, etc.


This refers only to transfers done for confirmed tokens not coins.

Please note that retrieving data will provide the most recent 14 days (1,209,600 seconds) of transactions from the current moment. To access the full historical data, please refer to the Address History APIs.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. Ethereum, Ethereum Classic, etc.

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.

address string Required

Represents the public address, which is a compressed and shortened form of a public key.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
nextStartingAfter string Optional

Defines the id of the next page which the next list should start from.

5ca21f92cf5431000105d1a7
sortingOrder string Optional

Defines what the sorting order is either ascending or descending.

ascending
items array Items (object) Required
recipient string Required

Defines the address to which the recipient receives the transferred tokens.

0xc6d46aba0c6e2eb6358c4e24804158cc4d847922
sender string Required

Defines the address from which the sender transfers tokens.

0x0902a667d6a3f287835e0a4593cae4167384abc6
timestamp integer Required

Defines the specific time/date when the transaction was created in Unix Timestamp.

1615861410
tokenData object Required
name string Required

String representation of the token name

Tether USD
nonFungibleValues object Optional
tokenId string Optional

String representation of the token id

16722
symbol string Required

String representation of the token symbol

Tether
contractAddress string Required

String representation of contract address of the token that was transfered

0x534bD102153EF199abAe8296a2FaE4599fC44Cdc
fungibleValues object Required
amount string Required

String representation of the token amount that was transfered

9.146383
decimals integer Required

String representation of the token decimals

18
standard string Required

String representation of the token type

ERC-20
transactionHash string Required

String representation of the hash of the transaction in which the token transfer happened

0x6474b1c189c7cbfe844d0021c8a867e170f67b915a80b08ec372539702308e54
minedInBlock object Required
hash string Required
000000000425a9f370833e3e61d9fff351ad1c54835aea0fa4b288f7a04f1462
height integer Required

Numeric representation of the block height of the transaction in which the token transfer happened

12046964

Credits Cost : 125 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "nextStartingAfter": "5ca21f92cf5431000105d1a7",
        "sortingOrder": "ascending",
        "items": [
            {
                "recipient": "0xc6d46aba0c6e2eb6358c4e24804158cc4d847922",
                "sender": "0x0902a667d6a3f287835e0a4593cae4167384abc6",
                "timestamp": 1615861410,
                "tokenData": {
                    "name": "Tether USD",
                    "nonFungibleValues": {
                        "tokenId": "16722"
                    },
                    "symbol": "Tether",
                    "contractAddress": "0x534bD102153EF199abAe8296a2FaE4599fC44Cdc",
                    "fungibleValues": {
                        "amount": "9.146383",
                        "decimals": 18
                    },
                    "standard": "ERC-20"
                },
                "transactionHash": "0x6474b1c189c7cbfe844d0021c8a867e170f67b915a80b08ec372539702308e54",
                "minedInBlock": {
                    "hash": "000000000425a9f370833e3e61d9fff351ad1c54835aea0fa4b288f7a04f1462",
                    "height": 12046964
                }
            }
        ]
    }
}