Through this endpoint customers can obtain details about a transaction by the transaction's unique identifier. In UTXO-based protocols like BTC there are attributes such as transactionId
and transaction hash
. They still could be different. In protocols like Ethereum there is only one unique value and it's hash
.
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.
String identifier of the transaction
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.
String representation of the transaction identifier (txid)
Boolean representation of if the transaction is mined
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
String representation of the weight
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 timestamp in seconds since epoch
String representation of the block hash
Numeric representation of the block height
Numeric representation of the transaction block height expiration
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": {
"item": {
"id": "",
"isConfirmed": true,
"locktime": 1234567890,
"size": 123,
"version": 1,
"fee": {
"amount": "0.00016932",
"unit": "ZEC"
},
"hash": "295e563cbc9d8965695a16d3b1a62a56224c61c01ef0886e25f58a91704f81b5",
"inputs": [
{
"addresses": [
"t2UNzUUx8mWBCRYPRezvA363EYXyEpHokyi"
],
"coinbase": "",
"outputIndex": 1,
"script": {
"type": "pubkeyhash"
},
"transactionId": "4b66461bf88b61e1e4326356534c135129defb504c7acb2fd6c92697d79eb250",
"value": {
"amount": "0.000144",
"unit": "ZEC"
},
"witnesses": [
"3045022100c11ea5740bcd69f0f68a4914279838014d28923134d18e05c5a5486dfd06cc8c02200dadccec3f07bed0d1040f9e5a155efa5fdd40fc91f92342578d26848da4c6b901"
]
}
],
"outputs": [
{
"addresses": [
"t1fh5m9GirsQnQqpj7PAJKDpKq6iyWtsj4r"
],
"isSpent": true,
"script": {
"type": "pubkeyhash"
},
"value": {
"amount": "0.000144",
"unit": "ZEC"
}
}
],
"positionInBlock": 123,
"recipients": [
{
"address": "",
"value": {
"amount": "0.000144",
"unit": "ZEC"
},
"addresses": "t1ZR1TsMeiiAbBKiRH9kFNnVPZoSya3et5s"
}
],
"senders": [
{
"address": "",
"value": {
"amount": "0.00873472",
"unit": "ZEC"
},
"addresses": "t1QBnApxL66n3wd2CEF7SRsU9Fqd2C2GD4k"
}
],
"timestamp": 1582202940,
"minedInBlock": {
"hash": "00000000003f595096f536e70e7dcbc901e64e6d9fc85603194f15035e7a36b9",
"height": 1939750
},
"blockchainSpecific": {
"expiryHeight": 123,
"overwintered": true,
"valueBalance": {
"amount": "0.123",
"unit": "ZEC"
},
"versionGroupId": "0b892f2085"
}
}
}
}