Jump to
Ctrl
+
/

List Unconfirmed Tokens Transfers By Address

GET
/blockchain-data/{blockchain}/{network}/addresses/{address}/tokens-transfers-unconfirmed

Through this endpoint customers can obtain a list with unconfirmed 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 unconfirmed 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.

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
contractAddress string Required

Represents the contract address of the token, which controls its logic. It is not the address that holds the tokens.

0x534bD102153EF199abAe8296a2FaE4599fC44Cdc
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
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 Optional

Represents the unique token identifier.

16721
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.

USDT
tokenType string Required

Defines the specific token type.

ERC-20
tokensAmount string Optional

Defines the token amount of the transfer.

9.146383
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.

0xbc8245ba5cccb524d91256224689ac0f16678321a266bab8197ad7daab4c9e16
transactionTimestamp integer Required

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

1615861410

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": [
            {
                "contractAddress": "0x534bD102153EF199abAe8296a2FaE4599fC44Cdc",
                "recipientAddress": "0xc6d46aba0c6e2eb6358c4e24804158cc4d847922",
                "senderAddress": "0x0902a667d6a3f287835e0a4593cae4167384abc6",
                "tokenDecimals": 6,
                "tokenId": "16721",
                "tokenName": "Tether USD",
                "tokenSymbol": "USDT",
                "tokenType": "ERC-20",
                "tokensAmount": "9.146383",
                "transactionHash": "0xbc8245ba5cccb524d91256224689ac0f16678321a266bab8197ad7daab4c9e16",
                "transactionTimestamp": 1615861410
            }
        ]
    }
}