Balance
Get balance of mint & wallet
GET
/balance
Method is used to retrieve the balance for a given token for user
Headers
Name
Value
Content-Type
application/json
x-api-key
The API key for authentication
Parameters
Parameter
Description
Required
token
Token for which the balance is queried
yes
wallet
Wallet address to check the balance
yes
Body
Response
{
"balance": 2911465.77172,
"balanceRaw": "2911465771720"
}
Examples
curl --location 'https://rpc.api-pump.fun/balance?token=your_token&wallet=your_wallet_address' \
--header 'Content-Type: application/json' \
--header 'x-api-key: your_api_key'
Last updated