Through this endpoint customers can list Transactions from and to their Wallet. The data returned will include transactionId
, direction
of the transaction - incoming or outgoing, amount
and more.
Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, 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 unique ID of the specific Wallet.
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.
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.
Defines the direction of the transaction, e.g. incoming, outgoing or even (when the transaction is made to the same wallet).
Defines the fee for the transaction.
Defines the converted amount of the transaction's fee.
Defines the exchange rate for the transaction's unit.
Defines the unit of the transaction's fee.
Represents fungible tokens'es detailed information
Defines the amount of the fungible tokens.
Defines the tokens' converted amount value.
Represents token's exchange rate unit.
Defines the token's name as a string.
The address which receives this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one
Represents the address which sends this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one sender.
Defines the symbol of the fungible tokens.
Defines the decimals of the token, i.e. the number of digits that come after the decimal coma of the token.
Defines the specific token type.
Defines the specific amount of the transaction.
Represents the converted amount.
Defines the base asset symbol to get a rate for.
Represents the unique internal transaction ID in regards to the parent transaction (type trace address).
Represents the recipient address with the respective amount.
Represents the sender address with the respective amount.
Represents the unique unit symbol.
Represents non-fungible tokens'es detailed information.
Defines the tokens' converted amount value.
Represents token's exchange rate unit.
Defines the token's name as a string.
Defines the address to which the recipient receives the transferred tokens.
Defines the address from which the sender transfers tokens.
Defines the symbol of the non-fungible tokens.
Represents tokens' unique identifier.
Defines the specific token type.
Represents a list of recipient addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
The address which receives this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one recipient.
Represents the amount received to this address.
Defines a plain text string as a label for the recipient.
Represents a list of sender addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
Represents the address which sends this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one sender.
Represents the total amount sent by this address including the fee.
Defines a plain text string as a label for the sender.
Defines the status of the transaction, if it is confirmed or unconfirmed.
Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
Represents the unique TD of the transaction.
Defines the transaction amount.
Defines the converted amount of the transaction as a string.
Defines the exchange rate's unit.
Defines the unit of the transaction's amount.
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"direction": "incoming",
"fee": {
"amount": "0.00003",
"convertedAmount": "1.50",
"exchangeRateUnit": "USD",
"symbol": "ETH"
},
"fungibleTokens": [
{
"amount": "0.254",
"convertedAmount": "0.0034",
"exchangeRateUnit": "USD",
"name": "Tether USD",
"recipient": "0x229f7172eab232d09d2de05a3e3b7b79c9abfe3b",
"sender": "0x1b7aa44088a0ea95bdc65fef6e5071e946bf7d8f",
"symbol": "ETH",
"tokenDecimals": 6,
"type": "ERC-20"
}
],
"internalTransactions": [
{
"amount": "0.001",
"convertedAmount": "4.30365936483792",
"exchangeRateUnit": "USD",
"operationId": "call_0",
"recipient": "0x07344b7649c5ff096b0317957d9a208931d04d5e",
"sender": "0x4b8ec9e58a8b08f3803f84fb52d0a50e84444592",
"symbol": "ETH"
}
],
"nonFungibleTokens": [
{
"convertedAmount": "0.034",
"exchangeRateUnit": "USD",
"name": "Axie Infinity",
"recipient": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"sender": "0x65b895f400dae5541d70cbbec07527210158f6e2",
"symbol": "AXS",
"tokenId": "13383",
"type": "ERC-721"
}
],
"recipients": [
{
"address": "0x6f61e3c2fbb8c8be698bd0907ba6c04b62800fe5",
"amount": "0.00427167",
"label": "yourStringHere"
}
],
"senders": [
{
"address": "0x6f61e3c2fbb8c8be698bd0907ba6c04b62800fe5",
"amount": "0.0001",
"label": "yourStringHere"
}
],
"status": "confirmed",
"timestamp": 1622466746,
"transactionId": "b3ddf04d74e5bd57f3ccb5375db6f39d228ed98cfa1ae9bf959b9406fc975f01",
"value": {
"amount": "0.001",
"convertedAmount": "150",
"exchangeRateUnit": "USD",
"symbol": "ETH"
}
}
]
}
}