Fuse Explorer API query
fuse_explorer_queryGeneric dispatcher for the Fusebox Explorer API (/api/v0/explorer/). Pass module + action + any additional query params. Covers all 40+ etherscan-compatible endpoints including balances, logs, transactions, contract ABI/source, and the five contract-verify POST routes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON body for POST verify-* actions. | |
| action | Yes | Action within the module — e.g. `balance`, `txlist`, `getabi`, `getLogs`, `eth_block_number`, `verify`. | |
| method | No | HTTP method (default GET). Use POST only for the five `contract/verify*` actions, which also accept a JSON body. | |
| module | Yes | Etherscan-style API module: `account`, `block`, `contract`, `logs`, `stats`, `token`, `transaction`. | |
| params | No | Additional query parameters (e.g. `address`, `fromBlock`, `toBlock`, `topic0`). Omit `module`, `action`, and `apiKey` — they're injected automatically. |