API Docs/Reference/Fetch Saved Posts
API Reference

Fetch Saved Posts

Retrieve all the bookmarks that you've created. You can use the query parameters to filter and paginate results.

GEThttps://api.linkedmash.com/v1/bookmarks

Header parameters

AuthorizationstringRequired

Your secret API key. Should be provided as a Bearer token.

Query parameters

Combine these parameters to narrow your results.

limitintegerOptional

The maximum number of bookmarks to return. Default is 20, maximum is 100.

cursorstringOptional

Cursor for pagination. Use the next_cursor value from a previous response.

is_unread_onlybooleanOptional

Filter by unread status. Default is true.

hide_archivedbooleanOptional

Filter by archived status. Default is true (hides archived bookmarks).

media_typestringOptional

Filter by media type (e.g., 'article', 'video', 'image').

authorstringOptional

Filter by author name.

tagstringOptional

Filter by tag.

posted_fromdate-timeOptional

Filter bookmarks posted after this date/time (ISO 8601 format).

posted_todate-timeOptional

Filter bookmarks posted before this date/time (ISO 8601 format).

bookmarked_fromdate-timeOptional

Filter bookmarks created after this date/time (ISO 8601 format).

bookmarked_todate-timeOptional

Filter bookmarks created before this date/time (ISO 8601 format).

sort_bystringOptional

Field to sort by (e.g., 'created_at', 'title').

sort_cursorstringOptional

Value of the sort field from the last item of the previous page, used for stable sorting with pagination.

qstringOptional

Search query to filter bookmarks by title or content.

vector_search_termstringOptional

Vector search term for semantic search.

Response

{
  "status": true,
  "data": [
    {
      "post_id": "7336731872414035968",
      "post_details": {
        "text": "Every single night, I run through a dead-simple 2-minute journal prompt.\n\nIt only has 5 questions.\n\nHere's how it works:",
        "link": "https://www.linkedin.com/feed/update/urn:li:activity:7336731872414035968",
        "posted_at": "2025-06-06T12:33:08.27+00:00",
        "attachments": [
          {
            "type": "document",
            "title": "My 2-Minute Evening Journal Prompt (5 Questions)",
            "url": "https://media.licdn.com/dms/document/media/v2/D4E1FAQF_Jxg36sxpIg/feedshare-document-pdf-analyzed/B4EZdFOIHNGcAc-/0/1749213108945?e=1750291200&v=beta&t=HmRZA2gVOuUaGdOqfKz5WDWcnJ_fKWYSv-hXEhg4WvA",
            "thumbnail": [
              {
                "url": "https://media.licdn.com/dms/document/pl/v2/D4E1FAQF_Jxg36sxpIg/feedshare-document-images_1920/B4EZdFOIHNGcAY-/0/1749213108945?e=1750291200&v=beta&t=UTLn8IylWinjDWp31RgkPOa-ImYgdpePUEclQuy-xjw",
                "width": 1545,
                "height": 1931
              }
            ]
          }
        ]
      },
      "author_id": "urn:li:member:414777096",
      "author_details": {
        "bio": "I talk about digital writing & personal progress",
        "name": "Dickie Bush 🚢",
        "username": "member:414777096",
        "profile_image": {
          "url": "https://media.licdn.com/dms/image/v2/D4E03AQFjX-BmKVA8sw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1681174265529?e=1756339200&v=beta&t=dVOLCn5tuwDg8ZPO4N5lbb4gsKyKUjRDoZGp62QMi2I",
          "width": 100,
          "height": 100,
          "expiresAt": 1756339200000
        }
      },
      "tags": null,
      "is_read": false,
      "is_archived": false,
      "posted_at": "2025-06-06T12:33:08.27",
      "imported_at": "2025-06-13T06:13:08.373",
      "sort_index": "1749795181410"
    }
  ],
  "meta": {
    "next_cursor": "MTc1OTYxNw==",
    "limit": 1,
    "total_count": 396
  }
}