Skip to main content

Get User Timeline

method
string
GET
endpoint
string
/timeline/
Retrieves the activity timeline for a specific user, including their posts, replies, and interactions.

Authentication

Requires JWT authentication via Authorization: Bearer <token> header.

Path Parameters

userId
string
required
The unique identifier of the user whose timeline to retrieve

Response

200
object
Success - Returns the user’s timeline
curl -X GET "https://frontend-api-v3.pump.fun/timeline/<userId>" \
  -H "Authorization: Bearer <your_token>" \
  -H "Accept: application/json"

Timeline Activities

The timeline endpoint returns various types of activities:

Activity Types

reply
activity
User posted a reply or comment on a coin
like
activity
User liked a coin or reply
follow
activity
User followed another user
coin_creation
activity
User created a new coin
trade
activity
User bought or sold a coin

Using the Timeline

The timeline endpoint is useful for:
  • Displaying a user’s recent activity feed
  • Building social features and user profiles
  • Tracking engagement metrics
  • Creating notification systems
  • Analyzing user behavior patterns
Timeline data is updated in near real-time. Activities typically appear within seconds of occurring.
Timeline results may be paginated for users with high activity. Use the nextCursor field to load additional pages.