API Key Management

Create API Keys for CLI or third-party tools to publish notes

Usage: Add Authorization: Bearer jai_xxxxx to request headers to call the publish API.
Publish: POST /api/open/notes/publish Wikis: GET /api/open/notes/wikis
Loading...

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"