Sleeve it.Read it later.

A scriptable bookmark manager app for iOS, Raycast, Chrome, web, and API workflows. One tap to save, every device in sync.

Now live on Raycast.

one-click capture

Save from wherever you are.

Native Share

Tap the share button on any page or link, pick Sleeve, and it lands in your queue.

Install Sleevy

Chrome Extension

Click the Sleeve icon in your toolbar. The current tab is captured instantly.

Install Extension

Web Companion

Paste a URL into the web app and hit save when you are already browsing on desktop.

Login

companion

Your links, organized everywhere.

sync

Save on one, read on the other

They sync before you can open your inbox, your items are everywhere.

filter

Tags, sources, full-text

Filter your queue by tag or capture source.

keyboard

Fully driveable from the keys

j/k to navigate, o to open, n to capture and fuzzy find from the command palette.

API

Built to extend.

Sleevy exposes a REST API with personal API Keys, so your bookmark manager can accept links from scripts, shortcuts, tools, and automations.

  • Personal API Keys for devices, scripts, and automations
  • Simple JSON over HTTPS, no SDK required
  • Capture, list, read state, and delete endpoints
  • Rate-limited per API Key
~/sleeve - zsh
# Save a link from anywhere with an HTTP request$ curl -X POST https://api.sleevy.app/v1/captures \  -H "Authorization: Bearer $SLEEVY_API_KEY" \  -H "Content-Type: application/json" \  -d '{      "url": "https://notes.dev/tiny-css",      "captureChannel": "api",      "tags": ["design", "front-end"]    }'{  "savedItem": {    "id": "itm_8f2c9a",    "originalUrl": "https://notes.dev/tiny-css",    "title": "The case for tiny stylesheets",    "type": "article",    "tags": ["design", "front-end"],    "lastSavedAt": "2026-05-08T14:21:09Z",    ...  },  "captureResult": "created"}$ Saved to queue - open in app