search_tokens_json
Search for blockchain tokens using multiple parameters including name, symbol, address, token type, and holder count ranges to filter and retrieve token data.
Instructions
JSON search for tokens with comprehensive search parameters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Token name | |
| symbol | No | Token symbol | |
| address | No | Token contract address | |
| type | No | Token type (ERC-20, ERC-721, ERC-1155) | |
| holders_count_min | No | Minimum holder count | |
| holders_count_max | No | Maximum holder 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": {
"address": {
"description": "Token contract address",
"type": "string"
},
"holders_count_max": {
"description": "Maximum holder count",
"type": "integer"
},
"holders_count_min": {
"description": "Minimum holder count",
"type": "integer"
},
"limit": {
"default": 10,
"description": "Number of results to return (default: 10, max: 50)",
"type": "integer"
},
"name": {
"description": "Token name",
"type": "string"
},
"offset": {
"default": 0,
"description": "Number of results to skip for pagination (default: 0)",
"type": "integer"
},
"symbol": {
"description": "Token symbol",
"type": "string"
},
"type": {
"description": "Token type (ERC-20, ERC-721, ERC-1155)",
"type": "string"
}
},
"required": [],
"type": "object"
}