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
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.
Numeric representation of the transaction contract
Represents the fee amount.
Defines the fee unit
String representation of the transaction gas
Numeric representation of the transaction gas used
String representation of the transaction hash
Numeric representation of the transaction input
Represents the index position of the transaction in the specific block.
String representation of the transaction to address
String representation of the transaction from address
String representation of the transaction status
Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
String representation of the amount value
Numeric representation of the transaction gas price
Defines the specific unit of the fee.
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"contract": 4.755369970448335e+47,
"fee": {
"amount": "0.00016932",
"unit": "BNB"
},
"gasLimit": 21000,
"gasUsed": 123456,
"hash": "0x8ff7684331492af9bf8026938535a2703a8f2f9b81ef902a5c8b9e41cf9008b7",
"inputData": 123,
"positionInBlock": 1,
"recipient": "0xf163C1592EbC8D3C01c146d95c3ea492b5A88652",
"sender": "0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97",
"status": "mined",
"timestamp": 1618208236,
"value": {
"amount": "0.07540846",
"unit": "BNB"
},
"gasPrice": {
"amount": "12345",
"unit": "WEI"
}
}
]
}
}