Jump to
Ctrl
+
/

List Transactions by Block Hash EVM

GET
/blocks/evm/{blockchain}/{network}/hash/{blockHash}/transactions

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.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name

network string Required

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.

blockHash string Required

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.

Query Parameters

context string Optional

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.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
offset integer Optional

The starting index of the response items, i.e. where the response should start listing the returned items.

Default : 0

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

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.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
offset integer Required

The starting index of the response items, i.e. where the response should start listing the returned items.

0
total integer Required

Defines the total number of items returned in the response.

100
items array Items (object) Required
contract integer Required

Numeric representation of the transaction contract

4.7553699704483E+47
fee object Required
amount string Required

Represents the fee amount.

0.00016932
unit string Required

Defines the fee unit

BNB
gasLimit integer Required

String representation of the transaction gas

21000
gasUsed integer Required

Numeric representation of the transaction gas used

123456
hash string Required

String representation of the transaction hash

0x8ff7684331492af9bf8026938535a2703a8f2f9b81ef902a5c8b9e41cf9008b7
inputData integer Required

Numeric representation of the transaction input

123
positionInBlock integer Required

Represents the index position of the transaction in the specific block.

1
recipient string Required

String representation of the transaction to address

0xf163C1592EbC8D3C01c146d95c3ea492b5A88652
sender string Required

String representation of the transaction from address

0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97
status string Required

String representation of the transaction status

mined
timestamp integer Required

Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.

1618208236
value object Required
amount string Required

String representation of the amount value

0.07540846
unit string Required
BNB
gasPrice object Required
amount string Required

Numeric representation of the transaction gas price

12345
unit string Required

Defines the specific unit of the fee.

WEI

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "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"
                }
            }
        ]
    }
}