Skip to main content

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)

  1. Open a post in your feed, on a profile, on a hashtag page, or in post detail.
  2. Click the bookmark control on the post card (Save).
  3. To remove it, click the bookmark again (Remove from saved).
  4. 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