List Bookmarks

Search and list bookmarks using the SaveIt.now API

Search and retrieve bookmarks from your SaveIt.now account.

Query Parameters

ParameterTypeRequiredDescription
querystringNoSearch query to filter bookmarks
tagsstringNoComma-separated list of tags to filter by
typesstringNoComma-separated list of bookmark types to filter by
specialstringNoSpecial filter: READ, UNREAD, or STAR
limitintegerNoNumber of results per page (default: 20, max: 100)
cursorstringNoCursor for pagination (used for fetching next page)

Search Functionality

The search query (query parameter) supports:

  • Full-text search: Searches in title, description, and URL
  • Exact phrases: Use quotes for exact matches: "web development"
  • Boolean operators: Use AND, OR, NOT operators
  • Wildcards: Use * for partial matches

Pagination

Use cursor-based pagination with limit and cursor parameters:

# Get first 20 bookmarks
curl -X GET "https://saveit.now/api/v1/bookmarks?limit=20" \
  -H "Authorization: Bearer YOUR_API_KEY"

# Get next 20 bookmarks using cursor from previous response
curl -X GET "https://saveit.now/api/v1/bookmarks?limit=20&cursor=eyJpZCI6ImJtXzEyMzQ1Njc4OTAifQ" \
  -H "Authorization: Bearer YOUR_API_KEY"

Notes

  • Search is case-insensitive
  • Results are sorted by creation date (newest first) by default
  • Empty search queries return all bookmarks
  • Tag filtering is exact match (case-insensitive)
  • Type filtering supports: ARTICLE, VIDEO, IMAGE, AUDIO, PDF, DOCUMENT, OTHER
  • Special filters allow filtering by read status or starred bookmarks