Save and organize bookmarks from anywhere.
Production: https://clipjot.net
This is the open source repository for ClipJot, containing:
- Native clients for iOS, Android, and Chrome
- API documentation and example code
- Developer resources for building integrations
The backend server is maintained separately. All clients communicate with the production API at clipjot.net.
ClipJot is a bookmark manager that lets you save links with one tap from any app's share sheet, organize with tags, and access your bookmarks from any device.
clipjot/
├── clients/
│ ├── ios/ # iOS app (Swift/SwiftUI)
│ ├── android/ # Android app (Java)
│ └── chrome-extension/ # Chrome extension
└── docs/
├── api/ # REST API specification
└── examples/ # API client examples
| Platform | Technology | Features |
|---|---|---|
| iOS | Swift, SwiftUI | Share Extension, OAuth, offline support |
| Android | Java | Share intent, OAuth, Material Design |
| Chrome | JavaScript, Manifest V3 | One-click save, keyboard shortcuts |
See clients/README.md for details.
ClipJot provides a REST API for building integrations:
- Base URL:
https://clipjot.net/api/v1 - Documentation: docs/api/v1.md
- Examples: docs/examples/
# List your bookmarks
curl -X POST https://clipjot.net/api/v1/bookmarks/list \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
# Add a bookmark
curl -X POST https://clipjot.net/api/v1/bookmarks/add \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "title": "Example", "tags": ["test"]}'Get an API token from Settings > API Tokens at clipjot.net.
Visit https://clipjot.net and sign in with Google or GitHub.
- iOS: Build from clients/ios/ (requires Xcode)
- Android: Build from clients/android/ (requires Android Studio)
- Chrome: Load from clients/chrome-extension/
Apache License 2.0 - see LICENSE for details.
RingZero LLC - ringzero.llc@gmail.com
