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
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.
Numeric representation of the transaction contract
String representation of the fee value
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
Numeric representation of the transaction index
String representation of the transaction to address
String representation of the transaction from address
String representation of the transaction status
Numeric representation of the timestamp in seconds since epoch
String representation of the amount value
Numeric representation of the transaction gas price
Defines the unit of the gas price amount, e.g. BTC, ETH, XRP.
API Key
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"offset": 0,
"total": 100,
"items": [
{
"contract": "0x534bD102153EF199abAe8296a2FaE4599fC44Cdc",
"fee": {
"amount": "0.00016932",
"unit": "BNB"
},
"gasLimit": 21000,
"gasUsed": 123456,
"hash": "0x8ff7684331492af9bf8026938535a2703a8f2f9b81ef902a5c8b9e41cf9008b7",
"inputData": "123",
"positionInBlock": 1,
"recipient": "0xf163C1592EbC8D3C01c146d95c3ea492b5A88652",
"sender": "0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97",
"status": "mined",
"timestapm": 1618208236,
"value": {
"amount": "0.123",
"unit": "BNB"
},
"gasPrice": {
"amount": "12345",
"unit": "WEI"
}
}
]
}
}