Jump to
Ctrl
+
/

Get Transaction Details By Transaction Hash EVM

GET
/transactions/evm/{blockchain}/{network}/{transactionHash}

Through this endpoint customers can obtain details about a transaction by the transaction's unique identifier.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.

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.

transactionHash string Required

String identifier of the transaction hash

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.

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
item object Required
contract string Optional

String representation of the transaction contract address

fee object Required
amount string Required

String representation of the transaction fee value

0.00016932
unit string Required
ETH
gasLimit integer Required

String representation of the transaction gas limit

552020
gasUsed integer Required

String representation of the transaction used gas

24673
hash string Required

String representation of the transaction hash

0x1ec73b0f61359927d02376b35993b756b1097cb9a857bec23da4c98c4977d2b2
inputData string Required

String representation of the transaction input data

0x67a5cd0600000000000000000000000031f42841c2db5173425b5223809cf3a38fede360
nonce integer Required

Numeric representation of the transaction nonce

10
positionInBlock integer Required

Numeric representation of the transaction index

1
recipient string Required

String representation of the recipient address

0x2MzakdGTEp8SMWEHKwKM4HYv6uNCBXtHpkV
sender string Required

String representation of the sender address

0x2N5PcdirZUzKF9bWuGdugNuzcQrCbBudxv1
status string Required

String representation of the transaction status

0x1
timestamp integer Required

Numeric representation of the timestamp in seconds since epoch

1582202940
value object Required
amount string Required

String representation of the transacted amount

unit string Required
ETH
gasPrice object Required
amount string Required

String representation of the transaction gas price

2994782927
unit string Required
WEI
minedInBlock object Required
hash string Required

String representation of the block hash

00000000407f119ecb74b44229228910400aaeb9f4e3b9869955b85a53e9b7db
height integer Required

Numeric representation of the block height

1939750
blockchainSpecific object Optional
signatureData object Optional

Representation of the transaction signature method.

functionSignature string Optional

Representation of the method function signature

_SIMONdotBlack_(int8[]. int224[])
method string Optional

Representation of the method function name

_SIMONdotBlack_
signature string Optional

Representation of the hex signature

0x095ea7b3

Credits Cost : 500 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "contract": "",
            "fee": {
                "amount": "0.00016932",
                "unit": "ETH"
            },
            "gasLimit": 552020,
            "gasUsed": 24673,
            "hash": "0x1ec73b0f61359927d02376b35993b756b1097cb9a857bec23da4c98c4977d2b2",
            "inputData": "0x67a5cd0600000000000000000000000031f42841c2db5173425b5223809cf3a38fede360",
            "nonce": 10,
            "positionInBlock": 1,
            "recipient": "0x2MzakdGTEp8SMWEHKwKM4HYv6uNCBXtHpkV",
            "sender": "0x2N5PcdirZUzKF9bWuGdugNuzcQrCbBudxv1",
            "status": "0x1",
            "timestamp": 1582202940,
            "value": {
                "amount": "",
                "unit": "ETH"
            },
            "gasPrice": {
                "amount": "2994782927",
                "unit": "WEI"
            },
            "minedInBlock": {
                "hash": "00000000407f119ecb74b44229228910400aaeb9f4e3b9869955b85a53e9b7db",
                "height": 1939750
            },
            "blockchainSpecific": {
                "signatureData": {
                    "functionSignature": "_SIMONdotBlack_(int8[]. int224[])",
                    "method": "_SIMONdotBlack_",
                    "signature": "0x095ea7b3"
                }
            }
        }
    }
}