The Explorer API is a REST interface that exposes the full breadth of on-chain data from the Fuse blockchain. It follows a module-action query pattern similar to Etherscan: most endpoints acceptDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/fuseio/fuse-docs/llms.txt
Use this file to discover all available pages before exploring further.
module and action query parameters that determine the type of data returned. The API covers account balances, transaction history, token transfers, block data, smart contract source code, event logs, and network statistics — making it suitable for analytics dashboards, block explorers, and DApp backends that need rich chain data.
Base URL
Authentication
Pass your public API key as a query parameter on every request:Query pattern
Explorer API endpoints use a module-action structure:module and action parameters are always required and determine the response shape.
Account endpoints
Get address balance
Returns the native FUSE balance for a single address. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=account&action=balance
Request parameters
Must be
account.Must be
balance.The address hash to query.
Your public API key.
Example
Get balance from a specific block
Returns the native FUSE balance for an address at a specific block. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=account&action=eth_get_balance
Request parameters
Must be
account.Must be
eth_get_balance.The address hash to query.
Block number, or one of:
latest, earliest, pending.Your public API key.
Get balances for multiple addresses
Returns FUSE balances for up to multiple addresses in a single call. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=account&action=balancemulti
Request parameters
Must be
account.Must be
balancemulti.Comma-separated list of address hashes.
Your public API key.
Get transaction list for an address
Returns a list of normal (external) transactions for a given address. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=account&action=txlist
Request parameters
Must be
account.Must be
txlist.The address to query transactions for.
Starting block number for the query range.
Ending block number for the query range.
Page number for pagination.
Number of results per page.
Sort order:
asc or desc.Your public API key.
Example
Get ERC-20 token transfers
Returns all ERC-20 token transfers for an address, optionally filtered by token contract. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=account&action=tokentx
Request parameters
Must be
account.Must be
tokentx.The wallet address to query.
Optional. Filter results to a specific token contract.
Your public API key.
Token endpoints
Get token information
Returns metadata for a specific token. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=token&action=getToken
Request parameters
Must be
token.Must be
getToken.The token contract address.
Your public API key.
Get token holders
Returns a paginated list of addresses holding a given token. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=token&action=getTokenHolders
Request parameters
Must be
token.Must be
getTokenHolders.The token contract address.
Page number.
Results per page.
Your public API key.
Block endpoints
Get block number by timestamp
Returns the block closest to a given Unix timestamp. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=block&action=getblocknobytime
Request parameters
Must be
block.Must be
getblocknobytime.Unix timestamp in seconds.
Whether to return the
before or after block closest to the timestamp.Your public API key.
Stats endpoints
Get network ETH price
Returns the current FUSE price in USD and BTC. Endpoint:GET https://api.fuse.io/api/v0/explorer?module=stats&action=ethprice
Request parameters
Must be
stats.Must be
ethprice.Your public API key.
Example
Error responses
| Status | Description |
|---|---|
403 | Forbidden — invalid or missing API key |