Last updated April 2026
Save Bookmarks from Android
Save This One works on Android through HTTP Shortcuts or Tasker. Share a link from any app, and it lands in your Save This One library with tags and notes. Free.
Two ways to save bookmarks from Android:
- HTTP Shortcuts (recommended): Free app, no coding, 5 minutes
- Tasker: More flexible, paid app, longer setup
Both add a "Save Bookmark" option to your Share menu.
Setup
You need your API token. In the web app sidebar, click the key icon, then Generate Token and Copy.
HTTP Shortcuts (recommended)
Install HTTP Shortcuts from the Play Store.
Create the shortcut
- Open HTTP Shortcuts, tap +, name it Save Bookmark
- Basic Request Settings: Method POST, URL
https://app.savethisone.com/api/bookmarks - Request Headers: add
Authorization=Bearer YOUR_API_TOKENandContent-Type=application/json - Request Body / Parameters: select Custom Body, content type
application/json, body:
{ "url": "{url}" }
{url}is a built-in variable. HTTP Shortcuts replaces it with the shared URL automatically.
- Trigger from Share Menu: enable it, select Share as URL
- Scripting > Run after execution, add:
if (response.statusCode === 201) {
showToast("Bookmark saved!");
} else {
showToast("Failed: " + response.statusCode);
}
Save a bookmark
Open any app, tap Share, select HTTP Shortcuts, tap Save Bookmark.
Tasker
Install Tasker from the Play Store.
Create the task
- Tasks tab, tap +, name it
Save Bookmark - Add action: Net > HTTP Request
- Method: POST - URL: https://app.savethisone.com/api/bookmarks - Headers (one per line): `` Authorization: Bearer YOUR_API_TOKEN Content-Type: application/json ` - Body: {"url": "%clip"}`
- Add action: Alert > Flash, text:
Bookmark saved: %http_response_code
Wire it to the Share menu
- Profiles tab, tap + > Event > System > Intent Received
- Set Action to
android.intent.action.SEND - Link to the Save Bookmark task
- In the task, change body to use
%intent_datainstead of%clip:
{"url": "%intent_data"}
- Long-press the task > Add to Share Menu
Save a bookmark
Same flow: Share > Tasker > Save Bookmark.