This endpoint will list transactions by an attribute address. The transactions listed will detail additional information such as hash, height, time of creation in Unix timestamp, etc.
Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software.
Represents the public address, which is a compressed and shortened form of a public key.
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.
String representation of the transaction signature to start searching backwards from. If not provided the search starts from the top of the highest max confirmed block
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.
Defines the id of the previous listed record id from which the current list should start from.
Defines whether or not there are more elements available after this set.
Defines the id of the next page which the next list should start from.
Defines what the sorting order is either ascending or descending.
Numeric representation of the transaction's block height
Object representation of the fee's amount & unit
String representation of the transaction's fee amount
String representation of the transaction's fee unit (ex. SOL)
Object Array representation of the transactions native (SOL) balance changes of each address
String representation of the balance change address
String representation of the balance change after the transaction
String representation of the balance change before the transaction
String representation of the balance change calculated
String representation of the balance change type
String representation of the balance change unit (ex. SOL)
Object Array representation of the transactions native movements
String representation of the movement asset amount
String representation of the movement recipient address
String representation of the movement sender address
String representation of the movement token's unit
String representation of the transaction's signature
String representation of the transaction's signer
Numeric representation of the transaction's timestamp
Object Array representation of the transactions token (SPL) balance changes of each address and token
String representation of the balance change address
String representation of the balance change after the transaction
String representation of the balance change before the transaction
String representation of the balance change calculated
String representation of the balance change token's contract address (also called mint)
String representation of the balance change token address (also called mint)
String representation of the balance change type
Object Array representation of the transactions token movements
String representation of the movement asset amount
String representation of the movement contract's address (also called mint)
String representation of the movement recipient address
String representation of the movement recipient token address
String representation of the movement sender address
String representation of the movement sender token address
API Key
{
"apiVersion": "2023-04-25",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"nextStartingAfter": "5ca21f92cf5431000105d1a7",
"sortingOrder": "ascending",
"items": [
{
"blockHeight": "259495121",
"fee": {
"amount": "0.000010702",
"unit": "SOL"
},
"nativeBalanceChanges": [
{
"address": "Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1",
"after": "100",
"before": "150",
"change": "50",
"type": "native",
"unit": "SOL"
}
],
"nativeMovements": [
{
"amount": "10",
"recipientAddress": "DUVULQ5bLhvrMwV6BzqPPEQ9RYJ2pVkqwmByBTESTpVf",
"senderAddress": "DUVULQ5bLhvrMTEstBzqPPEQ9RYJ2pVkqwmByBHKNGpVf",
"unit": "SOL"
}
],
"signature": "2KGuERep8VNbpDbyLxxXKV8uFik5ECSx5zrRAgUyzAbGCXGVg2Xb62Yda8TVD3xjxsmGkSNDSm5cVstgLjfnmte5",
"signer": "DCAKxn5PFNN1mBREPWGdk1RXg5aVH9rPErLfBFEi2Emb",
"timestamp": "1712821685",
"tokenBalanceChanges": [
{
"address": "DUVULQ5bLhvrMwV6BzqPPEQ9RYJ2pVkqwmByBHKNGpVf",
"after": "50",
"before": "50",
"change": "100",
"contractAddress": "Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1",
"tokenAddress": "DUVULQ5bLhvrMwV6BzqPPEQ9RYJ2pVkqwmByBHKNGpVf",
"type": "spl"
}
],
"tokenMovements": [
{
"amount": "10",
"contractAddress": "Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1",
"recipientAddress": "DUVULQ5bLhvrMwV6BzqPPEQ9RYJ2pVkqwmByBTESTpVf",
"recipientTokenAddress": "DUVULQ5bLhvrMTEstBzqPPEQ9RYJ2pVkqwmByBHKNGpVf",
"senderAddress": "DUVULQ5bLhvrMTEstBzqPPEQ9RYJ2pVkqwmByBHKNGpVf",
"senderTokenAddress": "DUVULQ5bLhvrMwV6BzqPPEQ9RYJ2pVkqwmByBHKNGpVf"
}
]
}
]
}
}