raindrop-api
This skill enables interaction with the Raindrop.io bookmarks service through its REST API. Use curl and jq for direct REST calls.
Works with
1
total installs
1
this week
236
GitHub stars
0
upvotes
Install Skill
Run in your terminal
1
installs
1
this week
236
stars
Installation Guide
How to use raindrop-api on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your machine
- ›Node.js 16+ with npm — verify with
node --version - ›Active project directory where you want to add
raindrop-api
Run the install command
Execute the skills CLI command in your project's root directory to begin installation:
Fetches raindrop-api from intellectronica/agent-skills and configures it for Cursor.
Select Cursor when prompted
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate raindrop-api. Access via /raindrop-api in your agent's command palette.
Security Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Documentation
Raindrop.io API Skill
This skill enables interaction with the Raindrop.io bookmarks service through its REST API. Use curl and jq for direct REST calls.
Official API documentation: https://developer.raindrop.io/
Authentication
Token Resolution
Resolve the API token in this order:
- Check environment variable
RAINDROP_TOKEN - Check if the user has provided a token in the conversation context
- If neither is available, use AskUserQuestion to request the token from the user
To verify a token exists in the environment:
[ -n "$RAINDROP_TOKEN" ] && echo "Token available" || echo "Token not set"
Quick setup: For personal use or development, generate a test token at https://app.raindrop.io/settings/integrations — open your app and copy the "Test token". Test tokens do not expire.
For full OAuth2 flow details, see the Authentication section below.
Making Authenticated Requests
All requests require the Authorization header with Bearer token:
curl -s -H "Authorization: Bearer $RAINDROP_TOKEN" \
"https://api.raindrop.io/rest/v1/ENDPOINT"
For POST/PUT requests with JSON body:
curl -s -X POST \
-H "Authorization: Bearer $RAINDROP_TOKEN" \
-H "Content-Type: application/json" \
-d '{"key": "value"}' \
"https://api.raindrop.io/rest/v1/ENDPOINT"
Verifying Authentication
Test the token by retrieving the current user:
curl -s -H "Authorization: Bearer $RAINDROP_TOKEN" \
"https://api.raindrop.io/rest/v1/user" | jq '.user.fullName'
Base URL and Conventions
- Base URL:
https://api.raindrop.io/rest/v1/ - Data Format: JSON for all request/response bodies
- Timestamps: ISO 8601 format
- Rate Limit: 120 requests per minute per authenticated user
- CORS: Supported for browser-based apps
Confirmation Requirement
Before executing any destructive action (DELETE, bulk update, move to trash), always ask the user for confirmation using AskUserQuestion. A single confirmation suffices for a logical group of related actions.
Destructive actions include:
- Deleting raindrops, collections, or tags
- Bulk updating or moving raindrops
- Merging or removing tags
- Removing collaborators from shared collections
- Clearing trash
Read-only operations (GET requests) do not require confirmation.
Endpoints Reference
Raindrops (Bookmarks)
Docs: https://developer.raindrop.io/v1/raindrops
Single Raindrop Operations
| Operation | Method | Endpoint |
|---|---|---|
| Get raindrop | GET | /raindrop/{id} |
| Create raindrop | POST | /raindrop |
| Update raindrop | PUT | /raindrop/{id} |
| Remove raindrop | DELETE | /raindrop/{id} |
| Upload file | PUT | /raindrop/file |
| Upload cover | PUT | /raindrop/{id}/cover |
| Get permanent copy | GET | /raindrop/{id}/cache |
| Suggest (new URL) | POST | /raindrop/suggest |
| Suggest (existing) | GET | /raindrop/{id}/suggest |
Docs: https://developer.raindrop.io/v1/raindrops/single
Raindrop creation/update fields:
link(string, required for creation) - Bookmark URLtitle(string) - Bookmark titleexcerpt(string) - Short descriptionnote(string) - User notes (supports Markdown)tags(array of strings) - Tag namescollection(object) -{"$id": collectionId}type(string) -link,article,image,video,document,audioimportant(boolean) - Mark as favouriteorder(number) - Sort order (ascending)media(array) - Media/thumbnail infohighlights(array) - Text highlightscover(string) - Cover image URL, or<screenshot>for auto-capturepleaseParse(object) -{}to trigger background metadata parsingcreated(string) - ISO 8601 creation datelastUpdate(string) - ISO 8601 last update datereminder(object) - Reminder settings
Deletion behaviour: Removing a raindrop moves it to Trash (collection ID -99). Removing from Trash deletes permanently.
Multiple Raindrop Operations
| Operation | Method | Endpoint |
|---|---|---|
| Get raindrops | GET | /raindrops/{collectionId} |
| Create multiple | POST | /raindrops |
| Update multiple | PUT | /raindrops/{collectionId} |
| Remove multiple | DELETE | /raindrops/{collectionId} |
| Export | GET | /raindrops/{collectionId}/export.{format} |
Docs: https://developer.raindrop.io/v1/raindrops/multiple
collectionId values:
0- All raindrops-1- Unsorted-99- Trash- Any positive integer - Specific collection
Query parameters for GET /raindrops/{collectionId}:
sort- Sort order:-created(default),created,score,-sort,title,-title,domain,-domainperpage- Results per page (max 50)page- Page number (0-indexed)search- Search query (seereferences/search-operators.md)nested- Boolean, include child collection bookmarks
Bulk update fields (PUT with ids array or search query):
important(boolean)tags(array) - Appends tags; empty array clears allmedia(array) - Appends; empty array clearscover(string) - URL or<screenshot>collection(object) -{"$id": collectionId}to move
Export formats: csv, html, zip
Collections
Docs: https://developer.raindrop.io/v1/collections
| Operation | Method | Endpoint |
|---|---|---|
| List root collections | GET | /collections |
| List child collections | GET | /collections/childrens |
| Get collection | GET | /collection/{id} |
| Create collection | POST | /collection |
| Update collection | PUT | /collection/{id} |
| Upload cover | PUT | /collection/{id}/cover |
| Delete collection | DELETE | /collection/{id} |
| Delete multiple | DELETE | /collections |
| Reorder/expand all | PUT | /collections |
| Merge collections | PUT | /collections/merge |
| Remove empty | PUT | /collections/clean |
| Empty trash | DELETE | /collection/-99 |
| System collection counts | GET | /user/stats |
| Search covers/icons | GET | /collections/covers/{text} |
| Featured covers | GET | /collections/covers |
Docs: https://developer.raindrop.io/v1/collections/methods
Collection fields:
title(string) - Collection nameview(string) - Display style:list,simple,grid,masonrypublic(boolean) - Public accessibilityparent(object) -{"$id": parentCollectionId}for nestingsort(number) - Sort positioncover(array) - Cover image URLsexpanded(boolean) - Whether subcollections are expandedcolor(string) - Collection colour
System collections (non-removable):
- ID
-1- "Unsorted" - ID
-99- "Trash"
Access levels (access.level):
1- Read only2- Collaborator (write)3- Collaborator (write + manage)4- Owner
For sharing/collaborators, see references/collections-sharing.md.
Tags
Docs: https://developer.raindrop.io/v1/tags
| Operation | Method | Endpoint |
|---|---|---|
| Get tags | GET | /tags/{collectionId} |
| Rename tag | PUT | /tags/{collectionId} |
| Merge tags | PUT | /tags/{collectionId} |
| Remove tag(s) | DELETE | /tags/{collectionId} |
collectionId: Omit or use 0 for tags from all collections.
Get tags response:
{
"result": true,
"items": [{"_id": "tagname", "count": 42}]
}
Rename tag:
curl -s -X PUT \
-H "Authorization: Bearer $RAINDROP_TOKEN" \
-H "Content-Type: application/json" \
-d '{"replace": "new-name", "tags": ["old-name"]}' \
"https://api.raindrop.io/rest/v1/tags/0"
Merge tags (same endpoint, multiple tags in array):
curl -s -X PUT \
-H "Authorization: Bearer $RAINDROP_TOKEN" \
-H "Content-Type: application/json" \
-d '{"replace": "merged-name", "tags": ["tag1", "tag2", "tag3"]}' \
"https://api.raindrop.io/rest/v1/tags/0"
Remove tags:
curl -s -X DELETE \
-H "Authorization: Bearer $RAINDROP_TOKEN" \
-H "Content-Type: application/json" \
-d '{"tags": ["tag-to-remove"]}' \
"https://api.raindrop.io/rest/v1/tags/0"
Highlights
Docs: https://developer.raindrop.io/v1/highlights
| Operation | Method | Endpoint |
|---|---|---|
| Get all highlights | GET | /highlights |
| Get collection highlights | GET | /highlights/{collectionId} |
| Get raindrop highlights | GET | /raindrop/{id} |
| Add highlight | PUT | /raindrop/{id} |
| Update highlight | PUT | /raindrop/{id} |
| Delete highlight | PUT | /raindrop/{id} |
For details, see references/highlights.md.
Filters
Docs: https://developer.raindrop.io/v1/filters
curl -s -H "Authorization: Bearer $RAINDROP_TOKEN" \
"https://api.raindrop.io/rest/v1/filters/{collectionId}" | jq '.'
Use 0 for all collections. Returns aggregated counts for broken links, duplicates, favourites, untagged items, tags, and content types.
Query parameters:
tagsSort--count(default) or_id(alphabetical)search- Additional search filter
User
Docs: https://developer.raindrop.io/v1/user
| Operation | Method | Endpoint |
|---|---|---|
| Get current user | GET | /user |
| Update user | PUT | /user |
Import
Docs: https://developer.raindrop.io/v1/import
| Operation | Method | Endpoint |
|---|---|---|
| Parse URL | GET | /import/url/parse?url={url} |
| Check URL existence | POST | /import/url/exists |
| Parse HTML bookmark file | POST | /import/file |
Backups
Docs: https://developer.raindrop.io/v1/backups
| Operation | Method | Endpoint |
|---|---|---|
| List backups | GET | /backups |
| Download backup | GET | /backup/{id}.{format} |
| Generate new backup | GET | /backup |
Formats: html or csv
Authentication: OAuth2 Flow
Docs: https://developer.raindrop.io/v1/authentication/token
For apps accessing other users' data (not personal use), use the full OAuth2 flow:
Step 1: Authorise
Direct users to:
https://raindrop.io/oauth/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code
Step 2: Exchange Code for Token
curl -s -X POST "https://raindrop.io/oauth/access_token" \
-H "Content-Type: application/json" \
-d '{
"code": "AUTH_CODE",
"client_id": "YOUR_CLIENT_ID",
"client_secret": "YOUR_CLIENT_SECRET",
"redirect_uri": "YOUR_REDIRECT_URI",
"grant_type": "authorization_code"
}' | jq '.'
Response:
{
"access_token":List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Steps
- 1Install skill using provided installation command
- 2Test with simple use case relevant to your work
- 3Evaluate output quality and relevance
- 4Iterate on prompts to improve results
- 5Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Related Skills
beautiful-mermaid
20intellectronica/agent-skills
rest-api-design
7aj-geddes/useful-ai-prompts
typescript-best-practices
91jwynia/agent-skills
google-search-console
40kostja94/marketing-skills
java-springboot
35github/awesome-copilot
python-expert-best-practices-code-review
33wispbit-ai/skills
Reviews
- HHiroshi Zhang★★★★★Dec 24, 2024
Registry listing for raindrop-api matched our evaluation — installs cleanly and behaves as described in the markdown.
- HHenry Mehta★★★★★Dec 20, 2024
Useful defaults in raindrop-api — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- SShikha Mishra★★★★★Dec 12, 2024
raindrop-api has been reliable in day-to-day use. Documentation quality is above average for community skills.
- MMia Smith★★★★★Nov 15, 2024
Solid pick for teams standardizing on skills: raindrop-api is focused, and the summary matches what you get after install.
- RRen Diallo★★★★★Nov 11, 2024
I recommend raindrop-api for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- HHiroshi Torres★★★★★Nov 3, 2024
raindrop-api has been reliable in day-to-day use. Documentation quality is above average for community skills.
- MMia Harris★★★★★Oct 22, 2024
Keeps context tight: raindrop-api is the kind of skill you can hand to a new teammate without a long onboarding doc.
- SSakura Ghosh★★★★★Oct 6, 2024
We added raindrop-api from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- MMaya Lopez★★★★★Oct 2, 2024
raindrop-api reduced setup friction for our internal harness; good balance of opinion and flexibility.
- DDev Gupta★★★★★Sep 13, 2024
Useful defaults in raindrop-api — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 33
Discussion
Comments — not star reviews- No comments yet — start the thread.