search_addresses_json
Filter and search Ethereum addresses using 150+ parameters including balance ranges, contract status, transaction counts, and verification status for blockchain analysis.
Instructions
JSON search for addresses with 150+ parameters for comprehensive filtering
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| eth_balance_min | No | Minimum ETH balance (in ETH, e.g., "1.5") | |
| eth_balance_max | No | Maximum ETH balance (in ETH, e.g., "10.0") | |
| is_contract | No | Whether the address is a contract | |
| is_verified | No | Whether the address is verified | |
| has_token_transfers | No | Whether the address has token transfers | |
| transactions_count_min | No | Minimum transactions count | |
| transactions_count_max | No | Maximum transactions count | |
| 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": {
"eth_balance_max": {
"description": "Maximum ETH balance (in ETH, e.g., \"10.0\")",
"type": "string"
},
"eth_balance_min": {
"description": "Minimum ETH balance (in ETH, e.g., \"1.5\")",
"type": "string"
},
"has_token_transfers": {
"description": "Whether the address has token transfers",
"type": "boolean"
},
"is_contract": {
"description": "Whether the address is a contract",
"type": "boolean"
},
"is_verified": {
"description": "Whether the address is verified",
"type": "boolean"
},
"limit": {
"default": 10,
"description": "Number of results to return (default: 10, max: 50)",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Number of results to skip for pagination (default: 0)",
"type": "integer"
},
"transactions_count_max": {
"description": "Maximum transactions count",
"type": "integer"
},
"transactions_count_min": {
"description": "Minimum transactions count",
"type": "integer"
}
},
"required": [],
"type": "object"
}