AN
Antinote
Docs
  • Docs
  • Changelog
  • Feature requests
  • Support portal
    • Search
    • Find and Replace
    • Screenshot to Text
    • AutoPaste
    • Simple Markdown
    • Formatting Shortcuts
    • URL Schemes
    • Timer

URL Schemes

Control Antinote from other apps and scripts with antinote:// URLs.

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 Antinote

antinote://

Create a new note

antinote://x-callback-url/createNote?content=My%20Note

Append to current note

antinote://x-callback-url/appendToCurrent?content=My%20Note

Overwrite current note

antinote://x-callback-url/overwriteCurrent?content=My%20Note

Promote and open a note

antinote://x-callback-url/promoteAndOpen?noteId=123

The noteId can be found in the SQLite DB or by using the search endpoint.

Toggle pinned status

antinote://x-callback-url/togglePin

Trigger global hotkey

antinote://x-callback-url/hotkey

Search notes

antinote://x-callback-url/search?searchTerm=My%20Search%20Term&x-success=your-callback-url

Will 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 you want those changes to reflect in Antinote.

antinote://x-callback-url/reloadDB
PrevFormatting Shortcuts
NextTimer
Was this helpful?