Retrieve token balances for a specific wallet address
curl --request GET \
--url https://frontend-api-v3.pump.fun/balances/{address}{
"address": "<string>",
"balances": [
{
"mint": "<string>",
"balance": "<string>",
"decimals": 123,
"uiAmount": 123,
"symbol": "<string>",
"name": "<string>"
}
],
"total": 123
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/BankkRoll/pumpfun-apis/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header:
Authorization: Bearer <your_token>
GET https://frontend-api-v3.pump.fun/balances/{address}
curl -X GET "https://frontend-api-v3.pump.fun/balances/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr?offset=0&limit=50&minBalance=0.001" \
-H "Authorization: Bearer <your_token>" \
-H "Accept: application/json"
<your_token> with your actual JWT tokenminBalance to filter out negligible token amountscurl --request GET \
--url https://frontend-api-v3.pump.fun/balances/{address}{
"address": "<string>",
"balances": [
{
"mint": "<string>",
"balance": "<string>",
"decimals": 123,
"uiAmount": 123,
"symbol": "<string>",
"name": "<string>"
}
],
"total": 123
}