New260+ blocks and 240+ tools are now fully documented
DocumentationGetting Started

Zelaxy

Build AI-powered workflow automations on a visual, block-based canvas

Zelaxy is an AI-powered workflow automation platform built on a modular, block-based architecture. You connect blocks on a visual canvas — each performs a specific function — to build powerful automation pipelines without writing code.

How It Works

Every workflow in Zelaxy follows the same pattern:

  1. A trigger or starter initiates the workflow (user input, webhook, schedule, or event)
  2. Blocks process data — AI agents reason, conditions branch, tools fetch or send data
  3. Outputs flow between blocks using {{blockName.outputField}} references
  4. A response block (optional) returns the final result to the user

References always use double braces: {{blockName.field}} for another block's output, and {{ENV_VAR}} for secrets and API keys. Angle brackets like <block.field> do not resolve.

Core Concepts

ConceptDescription
BlocksSelf-contained processing units you drag onto the canvas. Each has inputs, configuration, and outputs.
ConnectionsLines between blocks that define data flow. A block's output becomes the next block's input.
VariablesReference any block's output with {{blockName.fieldName}} syntax — works everywhere.
ToolsExternal service integrations (Slack, Gmail, GitHub, etc.) that blocks can call.
TriggersEvents that start workflows automatically — webhooks, schedules, or service events.

Example: Customer Support Bot

Here's a simple workflow that auto-responds to support emails:

[Gmail Trigger] → [Agent Block] → [Condition Block] → [Gmail Send] / [Slack Notify]
  1. Gmail Trigger fires when a new email arrives
  2. Agent Block (GPT-4o) analyzes the email: classifies urgency, drafts a reply
  3. Condition Block checks {{agent.content}} for urgency level
  4. If urgent → Slack notifies the team; otherwise → Gmail sends the auto-reply

Explore the Platform