get_transaction
Retrieve detailed blockchain transaction information using transaction hash to inspect transfers, fees, and status across multiple networks.
Instructions
Get transaction details by transaction hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockchain | Yes | Blockchain name | |
network | No | Network type (defaults to mainnet) | |
txHash | Yes | Transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"blockchain": {
"description": "Blockchain name",
"type": "string"
},
"network": {
"description": "Network type (defaults to mainnet)",
"enum": [
"mainnet",
"testnet"
],
"type": "string"
},
"txHash": {
"description": "Transaction hash",
"type": "string"
}
},
"required": [
"blockchain",
"txHash"
],
"type": "object"
}