Skip to main content
1

Get an API key

Open the OpenWhispr desktop app, go to Settings > API Keys, and create a key with the scopes you need.Your key looks like owk_live_abc123... — copy it now, it’s only shown once.
2

List your notes

curl -H "Authorization: Bearer owk_live_YOUR_KEY" \
  https://api.openwhispr.com/api/v1/notes/list?limit=5
3

Create a note

curl -X POST \
  -H "Authorization: Bearer owk_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"content": "My first API note", "title": "Hello from the API"}' \
  https://api.openwhispr.com/api/v1/notes/create
4

Search your notes

curl -X POST \
  -H "Authorization: Bearer owk_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "meeting notes"}' \
  https://api.openwhispr.com/api/v1/notes/search

Next steps