How to Save a Post
Bookmark posts you want to revisit. Saved posts are private to you and appear on the Saved page.
In the app (UI)
- Open a post in your feed, on a profile, on a hashtag page, or in post detail.
- Click the bookmark control on the post card (Save).
- To remove it, click the bookmark again (Remove from saved).
- Open your collection:
- Profile menu (avatar) → Saved posts, or
- Go to
/profile/saved
On the Saved page you can scroll through bookmarks (newest first) and unsave posts from there.
Via the API
Save:
POST /api/Post/{postId}/save
Authorization: Bearer {token}
Unsave:
DELETE /api/Post/{postId}/save
Authorization: Bearer {token}
List (paged):
GET /api/Post/saved?page=1&pageSize=10
Authorization: Bearer {token}
Feed and post detail responses include isSaved when you are authenticated, so clients can show the correct bookmark state.
Next steps
- Saved Posts feature — visibility rules and data model
- Save / unsave API
- React to a post
- Share a post
- Tutorials intro