search_blocks_json
Search Ethereum blocks using 120+ parameters including block hash, height range, gas usage, transaction count, and miner address to filter and retrieve blockchain data.
Instructions
JSON search for blocks with 120+ parameters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hash | No | Block hash | |
| height_min | No | Minimum block height | |
| height_max | No | Maximum block height | |
| gas_used_min | No | Minimum gas used | |
| gas_used_max | No | Maximum gas used | |
| transaction_count_min | No | Minimum transaction count | |
| transaction_count_max | No | Maximum transaction count | |
| miner_hash | No | Miner address hash | |
| limit | No | Number of results to return (default: 10, max: 50) | |
| offset | No | Number of results to skip for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"gas_used_max": {
"description": "Maximum gas used",
"type": "string"
},
"gas_used_min": {
"description": "Minimum gas used",
"type": "string"
},
"hash": {
"description": "Block hash",
"type": "string"
},
"height_max": {
"description": "Maximum block height",
"type": "integer"
},
"height_min": {
"description": "Minimum block height",
"type": "integer"
},
"limit": {
"default": 10,
"description": "Number of results to return (default: 10, max: 50)",
"type": "integer"
},
"miner_hash": {
"description": "Miner address hash",
"type": "string"
},
"offset": {
"default": 0,
"description": "Number of results to skip for pagination (default: 0)",
"type": "integer"
},
"transaction_count_max": {
"description": "Maximum transaction count",
"type": "integer"
},
"transaction_count_min": {
"description": "Minimum transaction count",
"type": "integer"
}
},
"required": [],
"type": "object"
}