get-account-balance
Retrieve SOL and token balances for a specific account on the Pump.fun platform. Specify the account name and optional token address to check balances efficiently.
Instructions
Get the SOL and token balances for an account
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountName | No | Name of the account to check | default |
| tokenAddress | No | Optional token address to check balance for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountName": {
"default": "default",
"description": "Name of the account to check",
"type": "string"
},
"tokenAddress": {
"description": "Optional token address to check balance for",
"type": "string"
}
},
"type": "object"
}