getBlockscoutSearch
Search for blocks, transactions, addresses, or tokens across multiple blockchain networks using chain IDs. Supports Ethereum, Polygon, Arbitrum, Optimism, and Base.
Instructions
Perform a search query to find blocks, transactions, addresses, or tokens on the blockchain.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | Chain ID for the blockchain network. Supports: 1, 137, 42161, 10, and 8453 | |
query | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chain": {
"anyOf": [
{
"enum": [
"1",
"137",
"42161",
"10",
"8453"
],
"type": "string"
},
{
"allOf": [
{
"type": "number"
},
{
"enum": [
"1",
"137",
"42161",
"10",
"8453"
],
"type": "string"
}
]
}
],
"description": "Chain ID for the blockchain network. Supports: 1, 137, 42161, 10, and 8453"
},
"query": {
"minLength": 1,
"type": "string"
}
},
"required": [
"chain",
"query"
],
"type": "object"
}