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 identifier (txid)
Numeric representation of the transaction locktime
Numeric representation of the transaction size
Numeric representation of the transaction version
String representation of the transaction hash
Object Array representation of transaction inputs
String representation of the coinbase hex
Numeric representation of the vout
String representation of the votype
String representation of the txid
String representation of the amount
String representation of the amount unit inputs
Object Array representation of transaction outputs
Boolean representation of is the transaction output spent
String representation of the type
String representation of the amount
String representation of the amount unit outputs
Numeric representation of the index
Object Array representation of transaction receivers
String representation of the receiver address
String representation of the amount
Object Array representation of transaction senders
String array representation of the sender address
String representation of the amount
String representation of the amount value
Numeric representation of the timestamp in seconds since epoch
Object representation of the transaction fee
String representation of the fee value
String representation of the fee unit
String representation of the block hash
Numeric representation of the block height
String representation of the transaction version group id
Numeric representation of the transaction block height expiration
Boolean representation of the overwintered upgrade.
String representation of the transaction value balance
String representation of the amount balance
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"nextStartingAfter": "5ca21f92cf5431000105d1a7",
"sortingOrder": "ascending",
"items": [
{
"id": "b8483fe0d1f276a3c53b9ce65f60a2963202f7096c3c3e9a2d4ea0cb31ab60de",
"locktime": 1781865,
"size": 123,
"version": 2,
"hash": "b8483fe0d1f276a3c53b9ce65f60a2963202f7096c3c3e9a2d4ea0cb31ab60de",
"inputs": [
{
"addresses": [
"XpXpivu9BppPn7XSd9JVPSXb2NsdCr1JZ7"
],
"coinbase": "XtotjTJ1nRGkuAH1axUfybBKoJGtFCqMaV",
"outputIndex": 1,
"script": {
"type": "scripthash"
},
"transactionId": "b8483fe0d1ff60a2963202f7096c3c3e9a2d4ea0cb31ab60de276a3c53b9ce65",
"value": {
"amount": "300.09363391",
"unit": "DASH"
},
"witnesses": [
"b8483fe0202f7096c3c3e9a2d4ea0cb31ab60ded1f276a3c53b9ce65f60a2963"
]
}
],
"outputs": [
{
"addresses": [
"XtotjxUfybBKoJGtFCqMaVTJ1nRGkuAH1a"
],
"isSpent": true,
"script": {
"type": "scripthash"
},
"value": {
"amount": "300.093632",
"unit": "DASH"
}
}
],
"positionInBlock": 10,
"recipients": [
{
"address": "XtotjxUfybBKoJGtFCqMaVTJ1nRGkuAH1a",
"value": {
"amount": "300.093632",
"unit": "DASH"
}
}
],
"senders": [
{
"address": "XpXpivu9BppPn7XSd9JVPSXb2NsdCr1JZ7",
"value": {
"amount": "300.09363391",
"unit": "DASH"
}
}
],
"timestamp": 1739356303,
"fee": {
"amount": "0.00000191",
"unit": "DASH"
},
"minedInBlock": {
"hash": "0000000000000001ce2cbb18127b56a4e6495fdec1fc81326317193ed6281cb6",
"height": 2221316
},
"blockchaiSpecific": {
"versionGroupId": "3"
},
"blockchainSpecific": {
"expiryHeight": 3,
"overwintered": true,
"valueBalance": {
"amount": "10.34",
"unit": "ZEC"
}
}
}
]
}
}