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.
String identifier of the address document represented in CryptoAPIs
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.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId
is generated by Crypto APIs and it's unique for every request.
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.
Defines how many items should be returned in the response per page basis.
Defines the id of the previous listed record id from which the current list should start from.
Defines whether or not there are more elements available after this set.
Defines the id of the next page which the next list should start from.
Defines what the sorting order is either ascending or descending.
String representation of the token transfer recipient
String representation of the token transfer sender
Numeric representation of the timestamp in seconds since epoch
String representation of the token name
String representation of the token id
String representation of the token symbol
String representation of contract address of the token that was transfered
Defines the specific token type.
String representation of the transaction hash
String representation of the block hash
Numeric representation of the block height
API Key
{
"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
}
}
]
}
}