Jump to
Ctrl
+
/

List Confirmed Tokens Transfers By Address

GET
/blockchain-data/{blockchain}/{network}/addresses/{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.

This refers only to transfers done for confirmed tokens not coins.
Please be advised that retrieving Polygon (beta) & Base (beta) & Optimism (beta) & Arbitrum (beta) & Avalanche (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.

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.

address string Required

Represents the public address, which is a compressed and shortened form of a public key.

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.

0xc6d46aba0c6e2eb6358c4e24804158cc4d847922
senderAddress string Required

Defines the address from which the sender transfers tokens.

0x0902a667d6a3f287835e0a4593cae4167384abc6
transactionTimestamp integer Required

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

1615861410
transactionFee object Required
amount string Required

Represents the total fee of a transaction which includes token transfers.

0.0000051873
unit string Required

Defines the fee unit

ETH
contractAddress string Required

String representation of contract address of the token that was transfered

0x534bD102153EF199abAe8296a2FaE4599fC44Cdc
minedInBlockHeight string Required

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

12046964
tokenDecimals string Required

String representation of the token decimals

18
tokenId string Required

String representation of the token id

16722
tokenName string Required

String representation of the token name

Tether USD
tokenSymbol string Required

String representation of the token symbol

USDT
tokenType string Required

String representation of the token type

ERC-20
tokensAmount string Required

String representation of the token amount that was transfered

9.146383
transactionHash string Required

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

0xbc8245ba5cccb524d91256224689ac0f16678321a266bab8197ad7daab4c9e16
transactionId string Optional

Representation of the transactionId in which the token transfer appears

0x28bca769b907b2dc079bd2b70e5cdeeb6c1934e2a97d1f39155004d400356fe2
id string Required

Record identificator used for pagination startingAfter

654902b79943250007d7bd1d

Credits Cost : 125 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": "0xc6d46aba0c6e2eb6358c4e24804158cc4d847922",
                "senderAddress": "0x0902a667d6a3f287835e0a4593cae4167384abc6",
                "transactionTimestamp": 1615861410,
                "transactionFee": {
                    "amount": "0.0000051873",
                    "unit": "ETH"
                },
                "contractAddress": "0x534bD102153EF199abAe8296a2FaE4599fC44Cdc",
                "minedInBlockHeight": "12046964",
                "tokenDecimals": "18",
                "tokenId": "16722",
                "tokenName": "Tether USD",
                "tokenSymbol": "USDT",
                "tokenType": "ERC-20",
                "tokensAmount": "9.146383",
                "transactionHash": "0xbc8245ba5cccb524d91256224689ac0f16678321a266bab8197ad7daab4c9e16",
                "transactionId": "0x28bca769b907b2dc079bd2b70e5cdeeb6c1934e2a97d1f39155004d400356fe2",
                "id": "654902b79943250007d7bd1d"
            }
        ]
    }
}