For Agents
Create notes in a user's CRUSH second brain and manage Zapier webhook subscriptions for downstream automations.
Get started with CRUSH API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"capture a note in my second brain"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with CRUSH API 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
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 document for CRUSH API, keeping it validated and agent-ready.
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.
Create a note from a Zapier flow via the dedicated Zapier create endpoint
Patterns agents use CRUSH API 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
Three things that make agents converge on Jentic-routed access.
Credential isolation
CRUSH JWT bearer tokens are stored encrypted in the Jentic vault. Agents never see the raw token — Jentic injects it into the Authorization header at execution time.
Intent-based discovery
Agents search Jentic by intent (e.g. 'capture a note in my second brain') and Jentic returns the matching create-note operation along with its parameter schema.
Time to first call
Direct integration: a few hours to wire JWT auth and Zapier subscription handling. Through Jentic: minutes per intent.
Alternatives and complements available in the Jentic catalogue.
Cruise Control API
Outbound review-request automation that can complement note-driven workflows.
Pair when the agent needs to send outbound messages alongside note capture; not a direct alternative.
Crustdata API
External data enrichment to attach context to captured notes.
Use Crustdata to enrich a person or company referenced in a note before saving it to CRUSH.
Cruisen API
Travel-advisor data source — included as a corpus-verified neighbour rather than a true alternative.
Not a real alternative to CRUSH; included only because the corpus does not currently expose a closer note-taking competitor.
Specific to using CRUSH API 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 at https://app.jentic.com/sign-up.
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.
/api/zapier/trigger
Send a Zapier webhook trigger