Home Tutorials Workflows Resources About Contact
Core Tools

The full stack

ToolWhat it doesUsed inCostLink
n8nWorkflow automation engineEvery tutorialFree (self-host)n8n.io
WAHAWhatsApp HTTP APIWhatsApp tutorialsFree tierwaha.devlike.pro
OpenRouterAI model gateway (DeepSeek, GPT, Claude)AI agent tutorialsFree creditsopenrouter.ai
DockerContainer runtime for self-hostingAll tutorialsFreedocker.com
Google SheetsPersistent bot memory layerMemory tutorialsFreesheets.google.com
ExcalidrawArchitecture diagramsAll tutorialsFreeexcalidraw.com
Copy-Paste Expressions

n8n expression cheatsheet

WAHA Payload — Edit Fields node
// WAHA Webhook Payload
event:     {{ $json.body.event }}
chatID:    {{ $json.body.payload.from }}
message:   {{ $json.body.payload.body }}
fromMe:    {{ $json.body.payload.fromMe }}
messageId: {{ $json.body.payload.id }}
Common Expressions
// Frequently Used
Increment count:    {{ $json.message_count + 1 }}
Current timestamp:  {{ $now }}
Previous node ref:  {{ $('Edit Fields').item.json.chatID }}
AI reply output:    {{ $json.output }}