Through this endpoint customers can obtain a list with confirmed token transfers by the address
attribute and the query parameters fromTimestamp
and toTimestamp
which gives customers the opportunity to filter the results by a specified time period.
Represents the specific blockchain protocol name, e.g. Ethereum, Ethereum Classic, etc.
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.
Represents the public address, which is a compressed and shortened form of a public key.
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 the specific time/date from which the results will start being listed.
Defines how many items should be returned in the response per page basis.
The starting index of the response items, i.e. where the response should start listing the returned items.
Defines the specific time/date to which the results will be listed.
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.
The starting index of the response items, i.e. where the response should start listing the returned items.
Defines the total number of items returned in the response.
Represents the contract address of the token, which controls its logic. It is not the address that holds the tokens.
Defines the block height in which this transaction was confirmed/mined.
Defines the address to which the recipient receives the transferred tokens.
Defines the address from which the sender transfers tokens.
Defines the decimals of the token, i.e. the number of digits that come after the decimal coma of the token.
Represents the unique token identifier.
Defines the token's name as a string.
Defines the token symbol by which the token contract is known. It is usually 3-4 characters in length.
Defines the specific token type.
Defines the token amount of the transfer.
Represents the hash of the transaction, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
Defines the specific time/date when the transaction was created in Unix Timestamp.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"minedInBlockHeight": 12046964,
"recipientAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"senderAddress": "0x65b895f400dae5541d70cbbec07527210158f6e2",
"tokenDecimals": 6,
"tokenId": "16721",
"tokenName": "Tether USD",
"tokenSymbol": "USDT",
"tokenType": "ERC-20",
"tokensAmount": "9.146383",
"transactionHash": "0x32de09d747bcbed41e8162681a72b2a6c760cf2116ce372fcd357c260909838a",
"transactionTimestamp": 1615861410
}
]
}
}