Get it onto the page
Open the app and type. Keyboard navigation, heuristic-driven automatic organization, and fuzzy search all keep you in the flow.
The self-organizing scratchpad
Jotchi is the hyper-fast scratchpad for everything on your mind. Start writing instantly, and sync across web, desktop, and mobile when you’re ready.
No account required · Notes stay on this device · Cloud is optional
A faster way to think
Jotchi gets out of the way: fast capture, automatic organization, and flexible file storage keep you in the flow.
Open the app and type. Keyboard navigation, heuristic-driven automatic organization, and fuzzy search all keep you in the flow.
Type an expression like 12.3 * 4 to get an instant result. Edit previous notes, and the result will automatically re-calculate.
Connect your existing cloud storage provider for convenient file upload and organized access.
Straightforward pricing
Local Jotchi is the complete writing experience. Upgrade only when syncing between devices becomes useful.
Free, without an account
Monthly billing. Cancel anytime.
No. Open Jotchi and start writing in local mode. An account is only required for Jotchi Cloud and its multi-device sync.
They’re saved in this browser on this device. Because clearing site data can remove local notes, use Jotchi Cloud if you want server-backed copies across devices.
Your notes, note history, shortcuts, and writing heuristics. Private service credentials for uploads or storage providers always remain on the device where you entered them.
Yes. Jotchi Cloud is billed monthly and can be managed from your account’s secure billing portal.
Sign in to use cloud sync and manage your plan.
Your local notes stay on this device until cloud sync is active.
Your Jotchi
Manage sync, preferences, and billing in one place.
Your notes are stored locally on this device.
Jotchi Cloud renews monthly through your Apple Account until cancelled in your App Store subscription settings.
Connect a cloud provider here, then drag files into any note to upload them. Your account brokers the connection, so no upload token is stored on your devices.
Create a key to let external tools and AI assistants read and write your notes through the API or MCP server. Read the docs →
API keys are available on Jotchi Cloud. Upgrade above to create one.
No API keys yet.
Copy your new key now — it won't be shown again.
Bring your notes over from another app. Export them there, then upload the file here — it creates new notebooks, pages, and notes in your library. Big headings become tabs, bullet lists and checklists carry over, and code blocks stay intact.
Importing is available on Jotchi Cloud. Upgrade above to import your notes.
Up to 64 MB. Importing the same file again creates duplicate notes.
With Jotchi Cloud, note behavior and shortcuts sync with your account.
Permanently delete your Jotchi account and every note stored in the cloud. This cannot be undone. Notes kept only on a device stay on that device.
Your subscription is billed through the App Store, which can only be cancelled by you. After deleting, also cancel Jotchi Cloud in your device's Settings → Apple Account → Subscriptions to stop billing.
This permanently removes your account and all cloud notes. Type DELETE to confirm.
Developers
Read and write your notes from your own scripts, automations, and AI assistants. Jotchi offers a small REST API and a remote MCP server, both authenticated with a personal API key. Available on Jotchi Cloud.
Open your account page, find API & MCP access, and create a key. The key is shown once, so copy it somewhere safe. Keys look like jotchi_sk_… and carry the same access as your account, so treat them like a password. You can revoke a key at any time from the same place.
All endpoints live under https://jotchi.com/api/v1. Send your key as a bearer token on every request:
curl https://jotchi.com/api/v1/me \
-H "Authorization: Bearer jotchi_sk_your_key_here"
Responses are JSON. A missing or revoked key returns 401; a request without an active subscription returns 402.
Your library is a tree: notebooks contain pages, and pages contain notes. Every notebook, page, and note has a stable id (an opaque string) that you pass to other endpoints. To add a note you need a page id — list your notebooks and pages to find one, or create them.
| Method | Path | Description |
|---|---|---|
| GET | /api/v1/me | Your account (email, plan). |
| GET | /api/v1/notebooks | List notebooks. |
| POST | /api/v1/notebooks | Create a notebook. Body: {"title"}. |
| GET | /api/v1/pages | List pages. Optional ?notebook=<id>. |
| POST | /api/v1/pages | Create a page. Body: {"notebook_id","title"}. |
| GET | /api/v1/notes | List notes. Optional ?page=, ?notebook=, ?q=, ?limit=, ?offset=. |
| GET | /api/v1/notes/{id} | Fetch one note. |
| POST | /api/v1/notes | Create a note. Body: {"page_id","text","kind?","completed?","highlighted?"}. |
| PATCH | /api/v1/notes/{id} | Update a note. Body: any of text, completed, highlighted, kind. |
| DELETE | /api/v1/notes/{id} | Delete a note. |
| GET | /api/v1/search | Search notes. Requires ?q=. |
curl -X POST https://jotchi.com/api/v1/notes \
-H "Authorization: Bearer jotchi_sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{"page_id":"PAGE_ID","text":"Buy milk","kind":"task"}'
Writes flow through the same cloud sync as the apps, so a note you create here shows up on every signed-in device within seconds.
A note's kind is one of the strings below. If you omit it when creating a note, it defaults to thought.
thought · calculation · result · list_item · address · task · link
Jotchi hosts a remote MCP server so AI assistants can work with your notes directly — nothing to install. Point your MCP client at the endpoint and authenticate with the same API key:
https://jotchi.com/api/mcp
{
"mcpServers": {
"jotchi": {
"url": "https://jotchi.com/api/mcp",
"headers": { "Authorization": "Bearer jotchi_sk_your_key_here" }
}
}
}
Use the mcp-remote bridge to connect a stdio-only client to the remote endpoint:
{
"mcpServers": {
"jotchi": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://jotchi.com/api/mcp",
"--header", "Authorization: Bearer jotchi_sk_your_key_here"
]
}
}
}
whoami, list_notebooks, create_notebook, list_pages, create_page, list_notes, search_notes, get_note, create_note, update_note, delete_note.
Errors return a JSON body with a message string (and, for developer-API errors, a code nested under data) — for example {"status":404,"message":"note not found","data":{"code":"not_found"}}. Common statuses:
400 — the request was malformed (missing or invalid fields).401 — the API key is missing, invalid, or revoked.402 — the account has no active subscription.404 — the notebook, page, or note was not found.429 — too many requests; slow down and retry.Keep an eye on the response status and back off on 429. Need help? Reach us from your account page.
We're listening
Need help, hit a bug, have a billing question, or just want to share an idea? Send it here and we'll reply by email.
We usually reply within a couple of days. Please double-check your email address so our reply reaches you.
We've got it and will reply to the email you gave us. Back to home
Your data, plainly explained
Jotchi is local first. You can use the notes app without an account, and those notes stay on your device. If you choose an account, cloud sync, billing, support, imports, or a storage integration, this policy explains the information Jotchi processes.
Effective and last updated: July 20, 2026
This policy applies to the Jotchi website, web app, Windows app, Apple-platform apps, Jotchi Cloud, developer API, MCP server, and support service (together, the “Service”). Jotchi is the controller of personal data processed for the Service. To contact Jotchi or exercise a privacy right, use the contact form and select the most relevant topic.
Without Jotchi Cloud, your notes, notebooks, pages, settings, and pending edits are stored locally in your browser or app database and are not sent to Jotchi. Browser storage and native app storage are necessary to make this local-first experience work. Clearing browser site data or deleting the app can remove local-only information.
For web purchases, Stripe processes payment details. Jotchi receives identifiers and subscription information such as Stripe customer and subscription IDs and payment status, but not your full card number. For App Store purchases, Apple processes payment details; Jotchi receives signed transaction and subscription information needed to verify and maintain your entitlement.
If you connect a storage provider, Jotchi receives an account label (normally your email address), granted scopes, and an OAuth refresh token. The refresh token is encrypted at rest and used to obtain short-lived access tokens. Jotchi requests Dropbox account and file-sharing scopes needed to upload and display your files. For Google Drive, Jotchi requests drive.file, OpenID, and email access so it can identify the connected account and create, read, and share only files the app creates or that you choose through the app.
Files you attach are generally uploaded directly from your device to the provider you selected. During an import, Jotchi may transfer embedded attachments to that provider for you. A connected provider’s own privacy policy governs its processing.
Like most online services, the Service and its infrastructure may process IP address, request time, route, response status, and browser or device information in security and operational logs. Jotchi does not use third-party advertising trackers or third-party analytics, and does not sell behavioral profiles. Essential local storage and authentication tokens are used to keep you signed in, preserve local notes, and operate the Service.
For people in the EEA, United Kingdom, or Switzerland, the legal bases are performance of our contract (providing the Service); your consent (for an optional provider connection and where otherwise requested); our legitimate interests in securing, supporting, and improving the Service without overriding your rights; and compliance with legal obligations. You may withdraw consent by disconnecting the provider or contacting us, without affecting earlier lawful processing.
We disclose information only as needed to operate the Service:
Service providers are permitted to process information only for contracted services and must protect it appropriately. Jotchi does not sell personal information or share it for cross-context behavioral advertising, and has not done so in the preceding 12 months. Jotchi does not knowingly use or disclose sensitive personal information for purposes that require a right to limit under California law.
To request account and cloud-data deletion, use the contact form from the email associated with your account and write “Delete my account.” We may verify your identity. We will delete or deidentify covered data unless retention is required or permitted by law, and residual copies may remain temporarily in restricted backups until overwritten. You should separately delete local copies and disconnect Jotchi from Google or Dropbox if you also want to revoke access at the provider.
Depending on where you live, you may have the right to access, receive a copy of, correct, delete, restrict, or object to processing of your personal data; withdraw consent; and complain to your local data-protection authority. You may also have a right to data portability. Submit a request through the contact form. We may ask for information needed to verify your identity and authority, and authorized agents may be required to provide proof of authorization.
EEA and UK users may object to processing based on legitimate interests and may lodge a complaint with the supervisory authority where they live or work. Information may be processed in countries outside your own; where required, Jotchi uses legally recognized safeguards for international transfers.
In the preceding 12 months, Jotchi collected the categories below from you, your device, payment platforms, and providers you connected. “Disclosed” here means disclosed for a business purpose—not sold or shared for behavioral advertising.
| Category | Examples and purpose | Recipients |
|---|---|---|
| Identifiers | Name, email, account ID, IP address, device/API identifiers; used for accounts, security, support, and integrations. | Hosting/email providers; Stripe, Apple, Google, or Dropbox when applicable. |
| Customer and commercial information | Plan, purchase and subscription status, provider connection, and support history; used to deliver and support paid features. | Hosting/support providers, Stripe, and Apple. |
| Internet or electronic activity | Requests, timestamps, status, user agent, API-key last use, and sync activity; used for service delivery, security, and reliability. | Infrastructure providers. |
| User content | Synced notes, organization data, preferences, imports, attachments, and support messages; used to provide requested features. | Infrastructure/email providers and a connected storage provider at your direction. |
| Sensitive personal information | Account login credentials and content you choose to place in notes; used only to authenticate and provide the Service. | Infrastructure providers; connected services only at your direction. |
California residents may request to know/access, correct, or delete covered personal information and may not be discriminated against for exercising a privacy right. Because Jotchi does not sell or share personal information as those terms are defined by the CCPA, no opt-out link is required. We will honor applicable browser-based opt-out signals if our practices change in a way that makes them relevant.
Jotchi uses measures designed to protect information, including HTTPS in transit, access controls, hashed device and API tokens, encrypted-at-rest OAuth refresh tokens, and scoped provider permissions. No system is perfectly secure. Protect your password and API keys, keep local devices secure, and do not place information in Jotchi that you are not comfortable storing under the model described here.
The online account and cloud service are not directed to children under 13, and Jotchi does not knowingly collect their personal information. Where local law requires a higher age to consent to an online service, a parent or guardian must authorize use. If you believe a child provided personal information without required consent, contact us so we can delete it.
We may update this policy as the Service or law changes. We will update the date above and provide additional notice when a change is material. Questions, complaints, and privacy requests can be sent through the Jotchi contact form.
The rules of the road
These terms govern your use of Jotchi’s apps, website, cloud sync, subscriptions, integrations, API, and MCP server. They are also Jotchi’s end-user license terms for software obtained outside an app store.
Effective and last updated: July 20, 2026
By downloading, accessing, creating an account for, purchasing, or using Jotchi (the “Service”), you agree to these Terms and the Privacy Policy. If you use the Service for an organization, you represent that you can bind it to these Terms. If you do not agree, do not use the Service.
You must be at least 13 and legally able to enter this agreement. If local law sets a higher age for independent consent, a parent or guardian must agree on your behalf. The Service is not directed to children under 13.
Jotchi is a notes application with an optional account and paid cloud features. Local mode does not require an account. Local-only notes are stored on your device, and you are responsible for backups and device security. Clearing browser storage, deleting application data, losing a device, or uninstalling the app may permanently remove local-only content.
Jotchi Cloud adds server-backed note sync and related features. Cloud sync is not an archival or disaster-recovery guarantee, is not end-to-end encrypted, and does not replace an independent backup for important content. Sync conflicts, network interruptions, software defects, expired subscriptions, or third-party outages can affect availability.
Subject to these Terms, Jotchi grants you a limited, personal, revocable, non-exclusive, non-transferable license to install and use the apps and access the Service for lawful personal or internal business purposes. You may not sell, sublicense, rent, distribute, copy beyond lawful backup needs, reverse engineer except where the law forbids that restriction, bypass security or payment controls, or use Jotchi’s branding without permission.
Provide accurate account information and keep it current. You are responsible for activity under your account and for protecting passwords, device tokens, API keys, and connected-provider access. Notify Jotchi promptly through the contact form if you suspect unauthorized use. API keys can read and change your cloud notes and must be treated like passwords.
Jotchi Cloud is offered as an automatically renewing monthly subscription at the price and currency shown before purchase. Taxes may apply. Web subscriptions are processed by Stripe; App Store subscriptions are processed by Apple and also subject to Apple’s purchase and subscription terms.
Unless you cancel before renewal, the payment provider may charge the next period automatically. Cancel a web subscription through the account billing portal or contact Jotchi; cancel an App Store subscription in your Apple Account subscription settings. Cancellation takes effect at the end of the current paid period. Except where required by law or expressly offered at purchase, charges are non-refundable and partial periods are not prorated. Apple controls refunds for App Store purchases.
Prices or plan features may change prospectively. We will provide notice required by law and, where practical, advance notice before a new price applies to an existing subscription. If payment fails or a subscription expires, paid features may stop; your local notes remain available, but continued cloud retention is governed by the Privacy Policy.
You retain ownership of content you create or upload. You grant Jotchi a worldwide, non-exclusive, royalty-free license to host, copy, transmit, format, and process that content only as reasonably necessary to provide, secure, maintain, and support the Service and comply with law. This license ends when the content is deleted from active systems, subject to legal retention and backup cycles.
You are responsible for your content and must have the rights needed to use it. Do not upload unlawful, infringing, malicious, or privacy-violating material. Jotchi does not claim ownership of your notes and does not use private note content to train advertising profiles.
You may not use the Service to:
When using the API or MCP server, you are responsible for applications and agents you authorize, their instructions, and all changes they make. Jotchi may apply reasonable rate and usage limits.
Stripe, Apple, Google Drive, Dropbox, operating-system platforms, and third-party clients are independent services governed by their own terms and privacy policies. You choose whether to connect them. Jotchi is not responsible for their content, availability, security, changes, or actions, but will handle credentials and data under the Privacy Policy. Disconnecting an integration may make linked attachments unavailable inside notes.
Jotchi and its licensors own the Service, software, design, branding, and related intellectual property, excluding your content and third-party components. If you voluntarily provide feedback, you grant Jotchi a perpetual, worldwide, royalty-free right to use it without restriction or compensation, provided this does not grant rights in private note content.
We may improve, modify, limit, or discontinue parts of the Service. We will provide reasonable notice of material changes that negatively affect paid use when practical, except for urgent security, legal, or operational needs. Preview or beta features may be incomplete, change, or stop without notice.
You may stop using Jotchi at any time. Canceling a subscription does not itself delete your account. To request deletion, follow the process in the Privacy Policy. We may suspend or terminate access for a material or repeated breach, fraud, security risk, nonpayment, legal requirement, or conduct that threatens the Service or others. Where reasonable, we will give notice and an opportunity to cure.
On termination, the license ends. Provisions that by their nature should survive—including ownership, payment obligations, warranty disclaimers, liability limits, and dispute terms—remain effective. Export important cloud content before termination when possible.
To the fullest extent permitted by law, the Service is provided “as is” and “as available.” Jotchi disclaims implied warranties of merchantability, fitness for a particular purpose, non-infringement, and quiet enjoyment. We do not promise uninterrupted or error-free operation, perfect sync, preservation of local or cloud content, or that results will meet every requirement. Nothing in these Terms excludes a warranty or consumer right that cannot lawfully be excluded.
To the fullest extent permitted by law, Jotchi and its suppliers will not be liable for indirect, incidental, special, consequential, exemplary, or punitive damages, or for lost profits, revenues, goodwill, data, or business interruption arising from the Service. Jotchi’s total liability for all claims relating to the Service will not exceed the greater of US $100 or the amount you paid Jotchi for the Service during the 12 months before the event giving rise to the claim.
These limits do not apply where prohibited by law and do not limit liability for fraud, willful misconduct, death or personal injury caused by negligence, or other liability that cannot legally be limited. Some jurisdictions provide additional mandatory rights.
Before filing a formal claim, please contact Jotchi and give us 30 days to try to resolve it informally. These Terms are governed by the law that applies to the Jotchi operator, without regard to conflict-of-law rules, while preserving any mandatory protections and courts available to you under consumer law where you live.
If part of these Terms is unenforceable, the rest remains effective. A failure to enforce a term is not a waiver. You may not assign these Terms without consent; Jotchi may assign them as part of a reorganization, financing, merger, acquisition, or sale of assets. These Terms, the Privacy Policy, and any purchase terms shown at checkout are the entire agreement about the Service.
For an app obtained through Apple’s App Store, Apple’s Standard End User License Agreement applies to the licensed application, and these Terms govern Jotchi’s online Service and supplement that agreement. You and Jotchi acknowledge that this agreement is between you and Jotchi, not Apple; Jotchi, not Apple, is responsible for the Service, maintenance and support, and addressing claims relating to it, subject to these Terms and applicable law.
We may update these Terms. We will post the revised version, update the date above, and provide additional notice when required. Continued use after the effective date means you accept the revised Terms; if you do not agree, stop using the Service and cancel any subscription.
Questions, legal notices, support requests, and billing concerns can be sent through the Jotchi contact form.
Email verification
One moment while we confirm your email address.