Jump to
Ctrl
+
/

List Tokens Transfers By Transaction Hash

GET
/blockchain-data/{blockchain}/{network}/transactions/{transactionHash}/tokens-transfers

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


Please be advised that retrieving Polygon (beta) data will provide you with the most recent 14 days of transactions. For access to full historical data, kindly reach out to our support team.

This refers only to transfers done for tokens not coins.

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.

transactionHash string Required

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.

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.

limit integer Optional

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

Default : 50
offset integer Optional

The starting index of the response items, i.e. where the response should start listing the returned items.

Default : 0

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-25
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
offset integer Required

The starting index of the response items, i.e. where the response should start listing the returned items.

0
total integer Required

Defines the total number of items returned in the response.

100
items array Items (object) Required
recipientAddress string Required

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

0x9e91eb3a35b96f0f0fe71f3c17fe8d29eb406b16
senderAddress string Required

Defines the address from which the sender transfers tokens.

0x9df8a6441e8a3dda75019595d431f9aa0dec475c
tokenId string Optional

Represents the tokenId value

430686
tokenName string Optional

Defines the token's name as a string.

Tether USD
tokenSymbol string Optional

Defines the token symbol by which the token contract is known. It is usually 3-4 characters in length.

BAND
transactionTimestamp integer Required

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

1615818368
contractAddress string Required

String representation of contract address of the token that was transferred

0x7ceb23fd6bc0add59e62ac25578270cff1b9f619
minedInBlockHeight integer Required

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

17034536
tokenDecimals integer Optional

String representation of the token decimals

tokenType string Required

String representation of the token type

ERC-20
tokensAmount string Required

String representation of the token amount that was transferred

0.010437808060307336
transactionHash string Required

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

0x48d318b028972841b126314a0f0007edce1dda78f8762c5c634a82f6c6d54d47
transactionFee object Required
amount string Required

String representation of the fee value of the transaction in which the token transfer happened

0.018972720039842712
unit string Required

Represents the unit of the fee.

AVAX
id string Required

Record identificator used for pagination startingAfter

644902b79943250007d7bd1d

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "offset": 0,
        "total": 100,
        "items": [
            {
                "recipientAddress": "0x9e91eb3a35b96f0f0fe71f3c17fe8d29eb406b16",
                "senderAddress": "0x9df8a6441e8a3dda75019595d431f9aa0dec475c",
                "tokenId": "430686",
                "tokenName": "Tether USD",
                "tokenSymbol": "BAND",
                "transactionTimestamp": 1615818368,
                "contractAddress": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
                "minedInBlockHeight": 17034536,
                "tokenDecimals": "",
                "tokenType": "ERC-20",
                "tokensAmount": "0.010437808060307336",
                "transactionHash": "0x48d318b028972841b126314a0f0007edce1dda78f8762c5c634a82f6c6d54d47",
                "transactionFee": {
                    "amount": "0.018972720039842712",
                    "unit": "AVAX"
                },
                "id": "644902b79943250007d7bd1d"
            }
        ]
    }
}