get_transaction
Retrieve comprehensive details of a transaction using its hash, including sender, recipient, value, and data. Supports multiple networks with BSC as the default.
Instructions
Get detailed information about a specific transaction by its hash. Includes sender, recipient, value, data, and more.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | No | Network name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet. | bsc |
txHash | Yes | The transaction hash to look up (e.g., '0x1234...') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"default": "bsc",
"description": "Network name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.",
"type": "string"
},
"txHash": {
"description": "The transaction hash to look up (e.g., '0x1234...')",
"type": "string"
}
},
"required": [
"txHash"
],
"type": "object"
}