- Token Balances
- NFT Balances
Prerequisites
- Ensure you have a wallet created.
- API Key: Ensure you have an API key with the scopes:
wallets.readandwallets:balance.read.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve and manage wallet balances using Crossmint’s APIs
wallets.read and wallets:balance.read.import { useWallet } from '@crossmint/client-sdk-react-ui';
const { wallet } = useWallet();
const { nativeToken, usdc, tokens } = await wallet.balances(tokens);
const wallet = await crossmintWallets.getWallet(walletLocator);
const { nativeToken, usdc, tokens } = await wallet.balances(tokens);
import { useWallet } from '@crossmint/client-sdk-react-native-ui';
const { wallet } = useWallet();
const { nativeToken, usdc, tokens } = await wallet.balances(tokens);
wallets.read, wallets.nfts.read.import { useWallet } from '@crossmint/client-sdk-react-ui';
const { wallet } = useWallet();
const nfts = await wallet.experimental_nfts({ perPage, page });
const wallet = await crossmintWallets.getWallet(walletLocator);
const nfts = await wallet.experimental_nfts();
Was this page helpful?
