Skip to content
Discussion options

You must be logged in to vote

Hi @SomwareHR ,

I know this project is out of maintenance, but maybe someone follows this.

I would appreciate it if you gave TriliumNext a try.

So if someone has a simple working script that reads one single note using ETAPI key (or any other way to access) I'll gladly accept it as a starting point

Here's a Bash script that uses curl to download the content of a note:

#!/usr/bin/bash

# Configuration
TOKEN=z1vA4fkGxjOR_ZXLrZeqHEFOv65yV3882iFCRtNIK9k9iWrHliITNSeQ=
SERVER=http://localhost:8080

# Download a note by ID
NOTE_ID="i6ra4ZshJhgN"
curl "$SERVER/etapi/notes/$NOTE_ID/content" -H "Authorization: $TOKEN" 

Don't forget to update the TOKEN (in Settings -> ETAPI), SERVER (including p…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by eliandoran
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #4915 on July 12, 2025 17:38.