Feed & Notifications
Get activity feed
GET
Retrieve paginated activity feed with cursor-based pagination. Returns posts from accounts that the specified user follows, ordered by creation time.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/0xfelaback/Social-Media-Activity-Feed/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
This endpoint requires authentication via Bearer token in the Authorization header.Path Parameters
The username of the user whose feed to retrieve
Query Parameters
Base64 URL-encoded cursor from previous response for pagination. If not provided, returns the first page of results.The cursor is a Base64 URL-encoded JSON object containing:
dateTime: ISO 8601 timestamp of the last postlastId: PostID of the last post
Number of posts to return per page. The API fetches
limit + 1 posts internally to determine if more pages exist.Cursor Structure
The cursor is implemented as a record in the source code:- dateTime: The
CreatedAttimestamp of the last post on the current page - lastId: The
PostIDof the last post on the current page
The cursor is Base64 URL-encoded (not standard Base64) to ensure safe usage in URLs. Invalid cursors return a 400 Bad Request response.
Response
Array of post objects from followed accounts
Base64 URL-encoded cursor for fetching the next page. Returns
null if there are no more pages.Indicates whether more results exist beyond the current page
Ordering
Posts are ordered by:- CreatedAt (descending) - Most recent posts first
- PostID (descending) - Tie-breaker for posts with identical timestamps