Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the CRUSH API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcrushthememory.com%2Fcrushthememory" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcrushthememory.com%2Fcrushthememory" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with CRUSH API.
Create a new note in the user's CRUSH workspace via POST /api/aws/notes
Retrieve the list of note flags currently set on the workspace
Subscribe a Zapier integration to CRUSH events for downstream automations
Unsubscribe a previously registered Zapier webhook
Send a webhook trigger payload through the Zapier endpoint
GET STARTED
Create a note from a Zapier flow via the dedicated Zapier create endpoint
Patterns agents use CRUSH API for, with concrete tasks.
★ Voice-to-Note Capture
Send transcribed voice notes into CRUSH automatically by calling the create-note endpoint after a transcription run completes. Lets users dump thoughts from anywhere without opening the CRUSH app.
After transcribing a voice memo, POST /api/aws/notes with the transcript text and a tag identifying the source device.
Zapier-Driven Inbox to CRUSH
Connect external sources (email, Slack, RSS) into CRUSH by registering a Zapier subscription and pushing each payload through the Zapier create or trigger endpoints. Useful when the source has a Zapier connector but no direct CRUSH integration.
POST /api/zapier/subscribe with the Zap target URL, then for each captured event POST /api/zapier/create with the payload to land it in CRUSH.
Flag-Based Note Triage
Pull the list of note flags via GET /api/aws/noteflags to drive a triage UI or summary report - for example, surfacing every note flagged 'follow-up' or 'idea' for a weekly review session.
Call GET /api/aws/noteflags, group results by flag name, and produce a weekly review document grouped by category.
Agent-Driven Knowledge Capture
Allow an AI agent to write into the user's CRUSH workspace as part of a longer workflow ('summarise this article and save it', 'capture three ideas from this brainstorm') by routing the note creation through Jentic so the JWT stays in the vault.
Search Jentic for 'capture a note in my second brain', load the create-note operation, and execute it with the article summary.
6 endpoints — jentic publishes the only available openapi specification for crush api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/aws/notes
Create a note
/api/aws/noteflags
Retrieve note flags
/api/zapier/subscribe
Subscribe a Zapier webhook
/api/zapier/subscribe
Unsubscribe a Zapier webhook
/api/zapier/create
Create a note via Zapier
/api/zapier/trigger
Send a Zapier webhook trigger
/api/aws/notes
Create a note
/api/aws/noteflags
Retrieve note flags
/api/zapier/subscribe
Subscribe a Zapier webhook
/api/zapier/subscribe
Unsubscribe a Zapier webhook
/api/zapier/create
Create a note via Zapier
/api/zapier/trigger
Send a Zapier webhook trigger
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the CRUSH API by hand means setting its JWT bearer auth and threading note creation, flag listing, and Zapier subscribe, create, and trigger calls yourself. Through Jentic you install once, import the CRUSH API from the API Directory, store the token once, and your agent calls it.
Permission scoping
CRUSH identifies notes and Zapier hooks in the request body rather than the URL path, so limit the agent to the operations it needs, such as creating a note or listing note flags. You choose the operations it may call, so deleting a Zapier subscription is not included unless you add it.
Credential isolation
Your CRUSH JWT bearer token is stored once, encrypted, by your own Jentic One instance and injected into the Authorization header at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'capture a note in my second brain' or 'list note flags', and Jentic returns the matching CRUSH operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using CRUSH API through Jentic.
Why is there no official OpenAPI spec for CRUSH API?
Crush The Memory does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call CRUSH API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the CRUSH API use?
The API uses HTTP bearer authentication with a JWT. Through Jentic the JWT is stored encrypted in the vault and never enters the agent prompt - Jentic injects it into the Authorization header at execution time.
Can I create a note in CRUSH through the API?
Yes. POST /api/aws/notes with the note body creates a new note in the authenticated user's workspace. Alternatively, POST /api/zapier/create accepts a Zapier-shaped payload for the same outcome through a Zap.
How do I subscribe a Zapier webhook to CRUSH events?
POST /api/zapier/subscribe with the target URL registers the subscription. Use POST /api/zapier/trigger to push events and DELETE /api/zapier/subscribe to unregister when the Zap is removed.
What are the rate limits for the CRUSH API?
The OpenAPI specification does not document specific rate limits. Watch for HTTP 429 responses and contact CRUSH support for production quotas before bulk-importing notes.
How do I capture a note in CRUSH through Jentic?
Run pip install jentic, search 'capture a note in my second brain', load the create-note operation, and execute it with the note text. Jentic injects the JWT bearer automatically.
Can I limit what my agent is allowed to do with the CRUSH API?
Yes. Because you run Jentic One yourself, your own rules decide which CRUSH operations and credentials the agent may use. You can allow only the calls the agent needs, such as creating a note with POST /api/aws/notes or listing note flags with GET /api/aws/noteflags, while withholding the Zapier subscribe, trigger, and create endpoints. Destructive actions like unsubscribing a Zapier webhook with DELETE /api/zapier/subscribe stay off unless you explicitly grant them.
Know of an official OpenAPI document? Contribute it →
For Agents
Create notes in a user's CRUSH second brain and manage Zapier webhook subscriptions for downstream automations.
Use for: Capture a new note in my CRUSH second brain, Send today's meeting summary into CRUSH as a note, Subscribe a Zapier zap to react to CRUSH events, Unsubscribe a stale Zapier webhook from CRUSH
Not supported: Does not handle full-text note search, sharing permissions, or task management - use for note creation, flag listing, and Zapier webhook plumbing only.
Jentic publishes the only available OpenAPI specification for CRUSH API, keeping it validated and agent-ready. CRUSH is an AI-assisted note-taking and second-brain product. The API exposes six endpoints: a direct note creation call, a note-flags read, and a small set of Zapier webhook hooks for subscribe, unsubscribe, trigger, and create-via-Zapier. Authentication uses a JWT bearer token.