# Blockscout Advanced Filters – Multichain Transaction Search

> Blockscout Advanced Filters – Multichain Transaction Search is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-12).

Queries filtered blockchain transactions, token transfers, and internal transactions across a specific chain using advanced criteria like address, token, method, amount, and time range

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/advanced-filters
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-advanced-filters-multichain-transaction-search-6c2448fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ztOgB1lGjldHQ0IsM2E_T

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability blockscout-advanced-filters-multichain-transaction-search-6c2448fb
```

Example prompt: Can you pull up all token transfers from wallet 0xABC123 on Ethereum mainnet (chain ID 1) in the last 30 days, filtered to only include USDC transfers?

## When to prefer this

Use this endpoint when you need granular, multi-criteria filtering of on-chain transactions across specific blockchains supported by Blockscout — particularly when you need to combine filters like address, token contract, method name, amount range, and time window simultaneously. Prefer this over basic block explorers when you need programmatic, cross-chain transaction search with advanced filter combinations.

## Known failure modes

- Invalid chain_id returns error or empty results
- Malformed address hashes return 400 or empty items array
- Overly broad filters may return large paginated results requiring cursor navigation
- Unsupported chain IDs not indexed by Blockscout return errors
- Invalid date format in age_from/age_to causes query failure
- Payment failure (x402) blocks access if USDC balance insufficient

## How this service works

Explore crypto activities with Blockscout's multichain search. Find transactions, addresses, tokens, and dapps across top blockchain networks — your go-to explorer for cross-chain blockchain data

## Output

Returns a paginated list of transactions/token transfers matching the filters, each including hash, from/to addresses, value, fee, method called, status, timestamp, block number, token details, and transfer indices. Also returns applied search parameters and next-page cursor for pagination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "chain_id": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "age_to": {
       "type": "string"
      },
      "methods": {
       "type": "string"
      },
      "age_from": {
       "type": "string"
      },
      "amount_to": {
       "type": "string"
      },
      "amount_from": {
       "type": "string"
      },
      "block_number": {
       "type": "string"
      },
      "methods_names": {
       "type": "string"
      },
      "address_relation": {
       "type": "string"
      },
      "transaction_index": {
       "type": "string"
      },
      "transaction_types": {
       "type": "string"
      },
      "token_transfer_index": {
       "type": "string"
      },
      "internal_transaction_index": {
       "type": "string"
      },
      "token_transfer_batch_index": {
       "type": "string"
      },
      "to_address_hashes_to_exclude": {
       "type": "string"
      },
      "to_address_hashes_to_include": {
       "type": "string"
      },
      "from_address_hashes_to_exclude": {
       "type": "string"
      },
      "from_address_hashes_to_include": {
       "type": "string"
      },
      "token_contract_symbols_to_exclude": {
       "type": "string"
      },
      "token_contract_symbols_to_include": {
       "type": "string"
      },
      "token_contract_address_hashes_to_exclude": {
       "type": "string"
      },
      "token_contract_address_hashes_to_include": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "to": {},
    "fee": "string",
    "from": {},
    "hash": "string",
    "type": "string",
    "token": {},
    "total": {},
    "value": "string",
    "method": "string",
    "status": "string",
    "timestamp": "string",
    "block_number": 0,
    "created_contract": {},
    "transaction_index": 0,
    "token_transfer_index": 0,
    "internal_transaction_index": 0,
    "token_transfer_batch_index": 0
   }
  ],
  "search_params": {
   "tokens": {},
   "methods": {}
  },
  "next_page_params": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-advanced-filters-multichain-transaction-search-6c2448fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockscout.com](https://www.zero.xyz/host/api.blockscout.com/llms.txt)
