Access and manage wallet data on the Solana blockchain.
Get wallet balance including all tokens
| Name | Type | Required | Description |
|---|---|---|---|
| address | string | Required | Wallet address |
| network | string | Optional | Network (mainnet-beta or devnet) |
{
"success": true,
"data": {
"sol": 2.456,
"tokens": [
{
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": 150.25,
"decimals": 6,
"symbol": "USDC"
}
]
}
}Get wallet transactions
| Name | Type | Required | Description |
|---|---|---|---|
| address | string | Required | Wallet address |
| limit | number | Optional | Number of transactions to return (default: 10, max: 100) |
| before | string | Optional | Transaction signature to fetch transactions before |
{
"success": true,
"data": [
{
"signature": "5KtPn1LGuxhgEHEAGRQ7wPgVbsGqTdaZLJvpHPBH4LUxkjQZqB6fQgFr7kkz9KzHQxupARnABXkYYP5zVvTQnYCe",
"blockTime": 1634567890,
"amount": 1.5,
"sender": "7UX2i7SucgLMQcfZ75s3VXmZZY4YRUyJN9X1RgfMoDUi",
"recipient": "2qXKEbUeNYwWUYmPRSZJKQP4DjVWvDTxjwUP1pFi4VGY",
"type": "transfer",
"token": "SOL"
}
]
}Get NFTs owned by a wallet
| Name | Type | Required | Description |
|---|---|---|---|
| address | string | Required | Wallet address |
{
"success": true,
"data": [
{
"mint": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"name": "Solana Monkey Business #1234",
"image": "https://arweave.net/example-image-url",
"collection": "Solana Monkey Business",
"attributes": [
{
"trait_type": "Background",
"value": "Blue"
},
{
"trait_type": "Fur",
"value": "Brown"
}
]
}
]
}