Docs K  Search
Docs/Build/Integrations
No-Code

No-Code Integrations

Connect Hebbrix to 6,000+ apps without writing code, using Zapier or n8n. Add AI memory to the tools you already use.

Platforms

Zapier: connect to 6,000+ apps. A no-code automation platform that wires apps together. If you've wished "when X happens in App A, do Y in App B", that's what Zapier does. Learn more

n8n: open-source workflow automation. Self-hostable, with more control over your data. Like Zapier, but you run it yourself. Learn more

Zapier Integration

Quick Start: Save Emails to Memory

Step 1: Create a New Zap

  1. Open your Zapier account
  2. Click Create Zap
  3. Add Gmail as your trigger
  4. Select New Email trigger

Step 2: Add Hebbrix Action

  1. Click + to add an action
  2. Search for Hebbrix
  3. Select Create Memory action
  4. Connect with your API key from Dashboard

Step 3: Map Your Data

FieldTypeDescription
Contentfield{{subject}}: {{snippet}}
Source Typefieldemail
Importancefield0.7

Available Zapier Actions

  • Create Memory - Store any piece of information as a searchable memory.
  • Search Memories - Find relevant memories using AI-powered search.
  • Ask AI With Memory - Get AI responses that include relevant memories.
  • Update Memory - Modify existing memory content or metadata.

Example Zaps

  • Slack AI Assistant - Answer questions in Slack using your knowledge base. (Slack → Hebbrix: Ask AI → Slack)
  • Meeting Notes Archive - Save Zoom transcripts automatically. (Zoom → Hebbrix: Create)
  • Daily Digest - Get AI summaries of your memories. (Schedule → Hebbrix: Ask AI → Email)

n8n Integration

Installation

Community Nodes (Recommended)

  1. In n8n, go to Settings → Community Nodes
  2. Click Install
  3. Enter n8n-nodes-hebbrix
  4. Click Install

Docker: add to your environment variables:

bash
N8N_CUSTOM_EXTENSIONS: "n8n-nodes-hebbrix"

Using HTTP Request Node

For advanced use cases, use the HTTP Request node directly:

Create Memory
// Method: POST
// URL: https://api.hebbrix.com/v1/memories
// Authentication: Bearer Token → {{ $credentials.hebbrixApi.apiKey }}

// Body (JSON):
{
  "content": "{{ $json.emailContent }}",
  "source_type": "n8n",
  "importance": 0.7,
  "metadata": {
    "workflow": "email-capture"
  }
}
Search Memories
// Method: POST
// URL: https://api.hebbrix.com/v1/search

// Body (JSON):
{
  "query": "{{ $json.searchQuery }}",
  "search_type": "hybrid",
  "limit": 10
}

Hebbrix Node Operations

FieldTypeDescription
CreateoperationStore a new memory
Create ManyoperationBatch create (up to 100)
GetoperationRetrieve by ID
SearchoperationAI-powered search
UpdateoperationModify content/metadata
DeleteoperationRemove a memory

Next Steps

Ask the docs
reading · this page

Hi! I'm the Hebbrix docs assistant. Ask me anything about this page: setup, code examples, endpoints, pricing, or integrations.