The Balances API provides endpoints to query token and NFT balances for any wallet address on Fuse Network. Use the ERC20 endpoint to fetch fungible token holdings including the native FUSE token, and the NFT endpoint to retrieve ERC-721 and ERC-1155 collectibles with metadata. All requests are authenticated with your public API key.Documentation 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.
Base URL
Authentication
All requests require a public API key passed as a query parameter:GET /assets/
Returns all ERC20 fungible token balances for a wallet address, including the native FUSE token.Request parameters
Your public API key.
The wallet address to query for ERC20 token balances.
Optional. A specific ERC20 token contract address. If provided, only the balance for that token is returned. If omitted, all token balances are returned.
Response
Response data wrapper.
Account information and token holdings.
The queried wallet address.
Array of token balance objects.
The ERC20 token contract address. For the native FUSE token, this is
0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE.Token name (e.g.,
Fuse).Token symbol (e.g.,
FUSE).Number of decimal places for the token.
Token balance in base units (before applying decimals).
Example
GET /nft-assets/
Returns all ERC-721 and ERC-1155 NFT assets owned by a wallet address.Request parameters
Your public API key.
The wallet address to query for NFT assets.
Maximum number of NFTs to return per request. Minimum: 1, maximum: 100.
Pagination cursor. Use the
nextCursor value from the previous response to fetch the next page of results.Response
Response data wrapper.
Account information and NFT holdings.
The queried wallet address.
Array of NFT collectible objects.
Unique identifier for the NFT.
The NFT token ID within its collection.
Display name of the NFT.
Description of the NFT.
URL of the NFT’s image or media.
Metadata URI (e.g., IPFS or HTTP URL) for the NFT.
Timestamp when the NFT was minted.
Information about the NFT’s parent collection.
Contract address of the collection.
Name of the collection.
Symbol of the collection.
Current owner of the NFT.
Owner’s wallet address.
Cursor for fetching the next page.
null when there are no more results.Example
Error responses
HTTP status code of the error.
Human-readable error description.
Short error code.
| Status | Meaning |
|---|---|
| 403 | Forbidden — invalid or missing API key |