Skip to main content

Get User Timeline

string
GET
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

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

Response

object
Success - Returns the user’s timeline

Timeline Activities

The timeline endpoint returns various types of activities:

Activity Types

activity
User posted a reply or comment on a coin
activity
User liked a coin or reply
activity
User followed another user
activity
User created a new coin
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.