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
tokenDecimals integer Optional

Defines the decimals of the token, i.e. the number of digits that come after the decimal coma of the token.

6
tokenId string Required

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 transfered

0x7ceb23fd6bc0add59e62ac25578270cff1b9f619
minedInBlockHeight integer Required

Defines the block height in which this transaction was confirmed/mined.

58867562
tokenType string Required

String representation of the token type

ERC-20
tokensAmount string Required

String representation of the token amount that was transfered

0.010437808060307336
transactionHash string Required

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

0xa62a1c0cf2c79074401047165ad9552ad5f67b4ff9396f37b143b37213261077
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.

MATIC
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",
                "tokenDecimals": 6,
                "tokenId": "430686",
                "tokenName": "Tether USD",
                "tokenSymbol": "BAND",
                "transactionTimestamp": 1615818368,
                "contractAddress": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
                "minedInBlockHeight": 58867562,
                "tokenType": "ERC-20",
                "tokensAmount": "0.010437808060307336",
                "transactionHash": "0xa62a1c0cf2c79074401047165ad9552ad5f67b4ff9396f37b143b37213261077",
                "transactionFee": {
                    "amount": "0.018972720039842712",
                    "unit": "MATIC"
                },
                "id": "644902b79943250007d7bd1d"
            }
        ]
    }
}