URL Schemes
The antinote:// URL schemes for creating, opening and exporting notes from scripts, Shortcuts, Raycast, Alfred, or the terminal.
Updated for v2.0
URL Schemes
Design Intent: Antinote supports a few URL schemes to help you control Antinote from other apps.
- Make sure to percent-encode the value of your parameters.
- Open Antinoteantinote://
- Create a new noteantinote://x-callback-url/createNote?content=My%20Note
- Append to current noteantinote://x-callback-url/appendToCurrent?content=My%20Note
- Overwrite current noteantinote://x-callback-url/overwriteCurrent?content=My%20Note
- Promote and open a noteantinote://x-callback-url/promoteAndOpen?noteId=123The noteId can be found in the SQLite DB or by using the search endpoint.
- Toggle pinned statusantinote://x-callback-url/togglePin
- Trigger global hotkeyantinote://x-callback-url/hotkey
- Search notesantinote://x-callback-url/search?searchTerm=My%20Search%20Term&x-success=your-callback-urlWill send the following in the callback as serialized JSON:[ "id": UUID, "content": String, "lastModified": String ]
- Reload DB (Advanced) - for when your script is altering the SQLite DB directly and want those changes to reflect in Antinote.antinote://x-callback-url/reloadDB