This endpoint will list transactions by an attribute transactionHash
. The transactions listed will detail additional information such as addresses, 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 hash of the block, which is its unique identifier. It represents a cryptographic digital fingerprint made by hashing the block header twice through the SHA256 algorithm.
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.
Represents the unique identifier of a transaction, i.e. it could be transactionId
in UTXO-based protocols like Bitcoin, and transaction hash
in Ethereum blockchain.
Represents the time at which a particular transaction can be added to the blockchain.
Represents the total size of this transaction.
Numeric representation of the transaction Represents the transaction version number.
Object representation of the transaction fee
Represents the fee amount.
Defines the specific unit of the fee.
Represents the same as transactionId
for account-based protocols like Ethereum, while it could be different in UTXO-based protocols like Bitcoin. E.g., in UTXO-based protocols hash
is different from transactionId
for SegWit transactions.
Object Array representation of transaction inputs
Represents the coinbase hex.
It refers to the index of the output address of this transaction. The index starts from 0.
String representation of the votype
Represents the reference transaction identifier.
Defines the specific amount.
String representation of the input value unit
It refers to the index of the output address of this transaction. The index starts from 0.
Object Array representation of transaction outputs
Defines whether the transaction output has been spent or not.
String representation of the type
Represents the specific amount.
String representation of the output value unit
Represents the index position of the transaction in the specific block.
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.
String representation of the recipient unit
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.
String representation of the senders unit
Represents a block height after which the transaction will expire.
"Overwinter" is the network upgrade for the Zcash blockchain.
Defines the transaction value balance.
Represents the transaction version group ID.
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"id": "4340d9463f0a5e3b3bc5844c17af78e20fa141f976f20732de630b0e6e4cd571",
"locktime": 1781965,
"size": 234,
"version": 1,
"fee": {
"amount": "0.00016932",
"unit": "ZEC"
},
"hash": "273eac351a2b76bb98196f3b310eabc787758cf157e8abe726250447185956ed",
"inputs": [
{
"addresses": [
"tmGf1r6Bo9HFdssAcFpYPehzcn1QyfurEeH"
],
"coinbase": "02d3080c4e060000000000002f4e614e",
"oututIndex": 1,
"script": {
"type": "scripthash"
},
"transactionId": "a2022151256fa5d6d3d282f3c0074456fa247da08bc07df71f8c1d9e76e7d928",
"value": {
"amount": "0.000144",
"unit": "ZEC"
},
"witnesses": [
"3045022100c11ea5740bcd69f0f68a4914279838014d28923134d18e05c5a5486dfd06cc8c02200dadccec3f07bed0d1040f9e5a155efa5fdd40fc91f92342578d26848da4c6b901"
],
"outputIndex": 1
}
],
"outputs": [
{
"addresses": [
"t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi"
],
"isSpent": true,
"script": {
"type": "scripthash"
},
"value": {
"amount": "0.000144",
"unit": "ZEC"
}
}
],
"positionInBlock": 1,
"recipients": [
{
"address": "mvuvhgT5DUjpQ2LBWQhujiFGDZiDHGdHa7",
"value": {
"amount": "0.00476076",
"unit": "ZEC"
}
}
],
"senders": [
{
"address": "n3NFmt8ibu1FnUqxexrVg4psg88Sx2PMsv",
"value": {
"amount": "0.00572702",
"unit": "ZEC"
}
}
],
"blockchainSpecific": {
"expiryHeight": 1,
"overwintered": true,
"valueBalance": {
"amount": "0"
},
"versionGroupId": "0x892f2085"
}
}
]
}
}