This endpoint will list transactions by an attribute blockHeight
. The transactions listed will detail additional information such as hash, addresses, 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 number of blocks in the blockchain preceding this specific block. Block numbers have no gaps. A blockchain usually starts with block 0 called the "Genesis block".
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.
Numeric representation of the transaction locktime
Numeric representation of the transaction size
Numeric representation of the transaction version
Object representation of the transaction fee
String representation of the fee value
String representation of the fee unit
Represents the unique identifier of a transaction
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
Object Array representation of transaction outputs
Boolean representation of is the transaction output spent
String representation of the type
String representation of the amount
Numeric representation of the transaction index
Object Array representation of transaction receivers
String representation of the receiver address
String representation of the amount
String representation of the receiver address
Object Array representation of transaction senders
String array representation of the sender address
String representation of the amount
String array representation of the sender address
Numeric representation of the transaction block height expiration
"Overwinter" is the network upgrade for the Zcash blockchain.
String representation of the transaction value balance
String representation of the transaction version group id
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"id": "4b66461bf88b61e1e4326356534c135129defb504c7acb2fd6c92697d79eb250",
"locktime": 123,
"size": 123,
"version": 1,
"fee": {
"amount": "0.123",
"unit": "ZEC"
},
"hash": "1ec73b0f61359927d02376b35993b756b1097cb9a857bec23da4c98c4977d2b2",
"inputs": [
{
"addresses": [
"t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi"
],
"coinbase": "02d3080c4e060000000000002f4e614e",
"outputIndex": 1,
"script": {
"type": "pubkeyhash"
},
"transactionId": "a2022151256fa5d6d3d282f3c0074456fa247da08bc07df71f8c1d9e76e7d928",
"value": {
"amount": "0.002324",
"unit": "ZEC"
},
"witnesses": [
"3045022100c11ea5740bcd69f0f68a4914279838014d28923134d18e05c5a5486dfd06cc8c02200dadccec3f07bed0d1040f9e5a155efa5fdd40fc91f92342578d26848da4c6b901"
]
}
],
"outputs": [
{
"addresses": [
"t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi"
],
"isSpent": true,
"script": {
"type": "pubkeyhash"
},
"value": {
"amount": "0.000144",
"unit": "ZEC"
}
}
],
"positionInBlock": 1,
"recipients": [
{
"address": "yEpHokyit2UNzUUx8mWBCRYPRezvA363EYX",
"value": {
"amount": "0.000144",
"unit": "ZEC"
},
"addresses": "2MzakdGTEp8SMWEHKwKM4HYv6uNCBXtHpkV"
}
],
"senders": [
{
"address": "t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi",
"value": {
"amount": "0.00873472",
"unit": "ZEC"
},
"addresses": "2N5PcdirZUzKF9bWuGdugNuzcQrCbBudxv1"
}
],
"blockchainSpecific": {
"expiryHeight": 123,
"overwintered": true,
"valueBalance": {
"amount": "0.123"
},
"versionGroupId": "0b292f2085"
}
}
]
}
}