Getting started: How to start with Znote
One note, one tool. Your notes don't just store ideas — they run.
Hit Run on the block below. No setup, no account, nothing to paste.
This block calls a real API and drops the result straight into your note. Code execution is free and unlimited — run it all day.
const r = await fetch("https://api.github.com/users/torvalds");
const u = await r.json();
console.log(`${u.name} · ${u.public_repos} repos · ${u.followers} followers`);
▶️ That ran on your machine. Zero credits, no limits. This is the free core of Znote: API calls, SQL queries, scripts — all runnable, right inside a note.
Open the ++Test an API++ or ++Database Query++ template — hit a real endpoint or run SQL against your project's DB. These are what most people end up reaching for every day.
💡 API tester, local DB browser, throwaway scripts — one note each, always one Run away.
Code fetches the data. The AI makes sense of it. The block below calls your function as a tool, then explains what it finds — in plain English.
async function getGithubActivity(username) {
const r = await fetch(`https://api.github.com/users/${username}/events/public`);
return (await r.json()).slice(0, 5);
}
Look up the recent GitHub activity of "torvalds" and summarize it in plain English.
💡 Any JS function becomes an AI tool — hit an API, query a DB, push to Jira. Your code does the work, the AI orchestrates.
💡 Just copy a file from your explorer (meeting note, PDF, screenshot, spec) and paste it above — Znote fills in the path for you and reads it as context.
Summarize this file in 3 bullets, then suggest 2 questions worth digging into.
@file:///👉-paste-your-file-here.txt
👉 You can also hit
Ctrl+Hto run AI on your note's content — analyse, rephrase, or rewrite on the fly.
Hit record, talk (or play any audio), and Znote writes structured minutes into your note — decisions, action items, key points. Copy them straight into Teams or Confluence and you're done.
🎤 Try it: record 30 seconds on what you're shipping this week. This is the one people come back to.
👨💻 You write code — API Tester, Database Query, reusable AI tools. Scattered scripts become runnable notes.
📋 You ship specs & projects — Specs → Jira, Gmail auto-reply, meeting recorder. Automate the repetitive thinking.
→ Open the gallery and adapt a template to your real work.
.md files on your disk. No cloud, no account.👉 Make it yours: Ctrl+N for a blank note, or open the gallery.