Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ephraimduncan/minimal.so/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
server/procedures/bookmarks.ts:28
Authentication
This endpoint requires authentication. See Authentication for details.Request
Filter bookmarks by a specific group ID. If omitted, returns all bookmarks for the user.
Input Schema
lib/schema.ts:118.
Response
Returns an array of bookmark objects ordered byupdatedAt (most recent first).
Unique identifier for the bookmark
Display title of the bookmark
The bookmark URL (null for color/text type bookmarks)
URL to the site’s favicon (automatically fetched for link bookmarks)
Type of bookmark
Hex color code for color-type bookmarks
Canonicalized version of the URL for duplicate detection
Whether the bookmark is publicly visible
ID of the group this bookmark belongs to
ID of the user who owns this bookmark
Timestamp when the bookmark was created
Timestamp when the bookmark was last updated
Examples
Using React Query (Client Component)
Using Server Client (Server Component)
Direct Client Call
Implementation Details
The procedure implementation (fromserver/procedures/bookmarks.ts:28):
Notes
- Results are automatically filtered by the authenticated user’s ID
- Bookmarks are ordered by most recently updated first
- The
groupIdfilter is optional and can be omitted to get all bookmarks - Returns an empty array if no bookmarks are found