Retrieve user notifications and activity alerts
curl --request GET \
--url https://frontend-api-v3.pump.fun/notifications{
"notifications": [
{
"id": "<string>",
"type": "<string>",
"title": "<string>",
"message": "<string>",
"createdAt": 123,
"read": true,
"metadata": {
"userId": "<string>",
"coinMint": "<string>",
"amount": "<string>"
}
}
],
"total": 123,
"unreadCount": 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/notifications
Show Notification Object
trade - Trade execution notificationmention - User mentioned youfollow - New followerlike - Someone liked your contentreply - Reply to your commentcoin_graduated - Coin you hold graduated to Raydiumprice_alert - Price threshold reachedcurl -X GET "https://frontend-api-v3.pump.fun/notifications?limit=20&offset=0" \
-H "Authorization: Bearer <your_token>" \
-H "Accept: application/json"
<your_token> with your actual JWT tokenunreadCount to display notification badgescurl --request GET \
--url https://frontend-api-v3.pump.fun/notifications{
"notifications": [
{
"id": "<string>",
"type": "<string>",
"title": "<string>",
"message": "<string>",
"createdAt": 123,
"read": true,
"metadata": {
"userId": "<string>",
"coinMint": "<string>",
"amount": "<string>"
}
}
],
"total": 123,
"unreadCount": 123
}