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
Authentication
Requires authentication via session cookie.Headers
Request Body
Response
Object mapping each input URL to a boolean indicating if it’s saved
Example
Behavior
URL Normalization
URLs are canonicalized before checking:- Protocol normalization (http/https)
- Trailing slash handling
- Query parameter ordering
- Fragment removal
Invalid URLs
If a URL cannot be normalized (invalid format), it will be marked asfalse in the response.
Schema
Error Responses
Use Cases
- Show visual indicators in browser extension for already-saved pages
- Bulk validation of bookmark lists
- Prevent duplicate saves
- Sync bookmark state across devices
Performance
- Maximum 100 URLs per request
- Uses database index on
normalizedUrlfor fast lookups - Single database query for all URLs
Source
- Implementation:
app/api/extension/bookmark/check/route.ts:16 - Schema:
route.ts:8