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 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 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.
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.
String representation of the transaction contract address
String representation of the transaction price unit
String representation of the transaction gas price
Object representation of the transaction fee
String representation of the fee value
String representation of the fee unit.
String representation of the transaction gas limit
String representation of the transaction used gas
String representation of the transaction hash
Numeric representation of the transaction input
Numeric representation of the transaction index
String representation of the transaction to address
String representation of the transaction from address
String representation of the transaction status
Numeric representation of the timestamp in seconds since epoch
Object representation of the transacted amount
String representation of the amount unit.
String representation of the transacted amount
String representation of the block hash
Numeric representation of the block height
Numeric representation of the transaction used bandwidth
String representation of the transaction used energy
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"nextStartingAfter": "5ca21f92cf5431000105d1a7",
"sortingOrder": "ascending",
"items": [
{
"contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"gasPrice": {
"unit": "WEI",
"amount": "123456"
},
"fee": {
"amount": "31",
"unit": "TRX"
},
"gasLimit": 210000,
"gasUsed": 21000,
"hash": "4259f7eeb8619c7578a2f78b27dd849dba0760db2e0fa61feec0f948a20b6b3c",
"inputData": "",
"positionInBlock": 10,
"recipient": "TRRRpTqaYnBN9EUYXwtAdaSamNNTP2XVr4",
"sender": "TQrY8tryqsYVCYS3MFbtffiPp2ccyn4STm",
"status": "0x1",
"timestamp": 1739363524,
"value": {
"unit": "TRX",
"amount": "25"
},
"minedInBlock": {
"hash": "0000000004258f50e41a9128f5b6db83ef5bed4e491c4814576acda264f5f42f",
"height": 69570384
},
"blockchainSpecific": {
"bandwithUsed": 45,
"energyUsed": "276"
}
}
]
}
}