Jump to
Ctrl
+
/

Get Synced Address Tokens Transfer EVM

GET
/addresses-historical/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.

Path Parameters

blockchain string Required
network string Required
address string Required

String identifier of the address document represented in CryptoAPIs

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

String representation of the token transfer recipient

0x3d0b25fe09e2cd92f06ba776391a122519936e90
sender string Required

String representation of the token transfer sender

0x0902a667d6a3f287835e0a4593cae4167384abc6
timestamp integer Required

Numeric representation of the timestamp in seconds since epoch

1615861410
tokenData object Required
fungibleValues object Required
amount string Required
162727.720910848
name string Required

String representation of the token name

Tether
nonFungibleValues object Optional
tokenId string Optional

String representation of the token id

123456
symbol string Required

String representation of the token symbol

USDT
contractAddress string Required

String representation of contract address of the token that was transfered

0xece01807f7d9b93529174533e997e5de168b0b39
standard string Required

Defines the specific token type.

ERC-20
transactionHash string Required

String representation of the transaction hash

0x2613aeecd43d41707f7158d9ea278e970ffb7240e272ff4aa758ede717859775
minedInBlock object Required
hash string Required

String representation of the block hash

0xbedfba55a8ef9342d1fe70e1e9adefad20aca7c164b072a648b1bb95d5a6b631
height integer Required

Numeric representation of the block height

123456789

Credits Cost : 100 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": "0x3d0b25fe09e2cd92f06ba776391a122519936e90",
                "sender": "0x0902a667d6a3f287835e0a4593cae4167384abc6",
                "timestamp": 1615861410,
                "tokenData": {
                    "fungibleValues": {
                        "amount": "162727.720910848"
                    },
                    "name": "Tether",
                    "nonFungibleValues": {
                        "tokenId": "123456"
                    },
                    "symbol": "USDT",
                    "contractAddress": "0xece01807f7d9b93529174533e997e5de168b0b39",
                    "standard": "ERC-20"
                },
                "transactionHash": "0x2613aeecd43d41707f7158d9ea278e970ffb7240e272ff4aa758ede717859775",
                "minedInBlock": {
                    "hash": "0xbedfba55a8ef9342d1fe70e1e9adefad20aca7c164b072a648b1bb95d5a6b631",
                    "height": 123456789
                }
            }
        ]
    }
}