Raindrop

Insert/delete and query your raindrop.io bookmarks with SQL.

Installation

anyquery install raindrop

Configuration

  1. Go to https://app.raindrop.io/settings/integrations
  2. Click on "Create new app" alt text
  3. Give it the name you want and click on "Create"
  4. Click on the app you just created
  5. Click "Create test token" and copy the token alt text
  6. Fill it in when requested by anyquery in the installation process

Usage

-- Insert a bookmark
INSERT INTO raindrop_items(title, link, created_at, reminder) VALUES ('A cool SQL tool', 'https://anyquery.dev', '2024-07-10', '2024-07-20');
-- Delete a bookmark
DELETE FROM raindrop_items WHERE title = 'A cool SQL tool';
-- Query all bookmarks
SELECT * FROM raindrop_items;

Schema

Column index Column name type
0 id INTEGER
1 link TEXT
2 title TEXT
3 excerpt TEXT
4 note TEXT
5 user_id TEXT
6 cover TEXT
7 tags TEXT
8 important INTEGER
9 removed INTEGER
10 created_at TEXT
11 last_updated_at TEXT
12 domain TEXT
13 collection_id INTEGER
14 reminder TEXT

Known limitations