Through this endpoint customers can list transactions by address
that are unconfirmed.
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.
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
String representation of the transaction hash
Object Array representation of transaction inputs
It refers to the index of the output address of this transaction. The index starts from 0.
Represents the script type of the reference transaction identifier.
Represents the reference transaction identifier.
Defines the specific amount.
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.
Represents a list of recipient addresses with the respective amounts.
String representation of the receiver addresses
Represents the amount received to this address.
Object Array representation of transaction senders
Represents the address of the sender.
String representation of the amount
Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
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": "3d74a44fe666308242b2c9dd0197a601779d17ba9fe8f7a23612c53a910bc98d",
"locktime": 1,
"size": 123,
"version": 1,
"hash": "86868a1f4e6c2e675aa0031ca8d78a28f3ffda74185ca9377ff39f9b1c730536",
"inputs": [
{
"addresses": [
"t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi"
],
"outputIndex": 1,
"script": {
"type": "pubkeyhash"
},
"transactionId": "4b66461bf88b61e1e4326356534c135129defb504c7acb2fd6c92697d79eb250",
"value": {
"amount": "0.123",
"unit": "ZEC"
},
"witnesses": [
"3045022100c11ea5740bcd69f0f68a4914279838014d28923134d18e05c5a5486dfd06cc8c02200dadccec3f07bed0d1040f9e5a155efa5fdd40fc91f92342578d26848da4c6b901"
]
}
],
"outputs": [
{
"addresses": [
"t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi"
],
"isSpent": true,
"script": {
"type": "pubkeyhash"
},
"value": {
"amount": "0.123",
"unit": "ZEC"
}
}
],
"recipients": [
{
"address": "tb1qdc0jaryry3u56j94xp5zeyhn9zjuzkqec2mvfh",
"value": {
"amount": "0.123",
"unit": "ZEC"
}
}
],
"senders": [
{
"address": "n1eypQAVqQMmDuXffCF3LPXREmF71ecuai",
"value": {
"amount": "0.123",
"unit": "ZEC"
}
}
],
"timestamp": 1633518942013,
"blockchainSpecific": {
"expiryHeight": 123,
"overwintered": true,
"valueBalance": {
"amount": "0.123",
"unit": "ZEC"
},
"versionGroupId": "1234567"
}
}
]
}
}