API Key Management
Create API Keys for CLI or third-party tools to publish notes
Usage: Add
Publish:
Authorization: Bearer jai_xxxxx to request headers to call the publish API.Publish:
POST /api/open/notes/publish Wikis: GET /api/open/notes/wikisLoading...
API Quick Reference
# Publish a note
curl -X POST YOUR_SERVER_URL/api/open/notes/publish \
-H "Authorization: Bearer jai_your_key_here" \
-H "Content-Type: application/json" \
-d '{"title":"Note Title","content":"# Content","wiki":"Wiki Name"}'
# List wikis
curl YOUR_SERVER_URL/api/open/notes/wikis \
-H "Authorization: Bearer jai_your_key_here"