Skip to main content
GET
Get Notifications

Overview

The Notifications endpoint returns user-specific notifications about trades, mentions, follows, and other platform activity.

Authentication

This endpoint requires JWT authentication via the Authorization header:

Endpoint

Query Parameters

number
required
Maximum number of notifications to return
number
required
Number of notifications to skip for pagination

Response

array
Array of notification objects
number
Total number of notifications (for pagination)
number
Number of unread notifications

Notification Types

  • trade - Trade execution notification
  • mention - User mentioned you
  • follow - New follower
  • like - Someone liked your content
  • reply - Reply to your comment
  • coin_graduated - Coin you hold graduated to Raydium
  • price_alert - Price threshold reached

Example Request

Use Cases

  • Display user notification feed
  • Build real-time notification systems
  • Track unread notifications
  • Send push notifications for important events
  • Create activity logs and audit trails

Notes

  • Replace <your_token> with your actual JWT token
  • Notifications are user-specific based on the JWT token
  • Use pagination to efficiently load notification history
  • Check unreadCount to display notification badges
  • Mark notifications as read through separate endpoint (if available)