Skip to main content

Node Types

AgentVerse nodes are the building blocks of every orchestration. Each node performs a specific function and connects to other nodes to form a workflow.

Categories

Trigger Nodes

Trigger nodes start an orchestration. Every orchestration must have exactly one trigger node as its entry point. Trigger nodes have no inputs — they only produce outputs.

Action Nodes

Action nodes interact with external services. They receive data from upstream nodes, perform an operation (API call, database write, file upload), and return a result.

Logic Nodes

Logic nodes control the flow of an orchestration. They branch, loop, pause, or wait for external input before continuing execution.

AI Nodes

AI nodes integrate language models and AI agents into your orchestration. They support multi-modal operations and can connect to other nodes as tools.

Connection Types

Nodes communicate over two types of connections:
AI Tool connections are only available on the AI Agent node. Connect any action or logic node as a tool to give the agent the ability to call it autonomously.

Data Flow and {{ }} Expressions

Data moves between nodes as structured JSON. Reference any upstream node’s output in a parameter field using the {{ }} expression syntax:
Every node parameter that accepts expressions shows a ⚡ link icon when hovered. Click it to open the field picker, which shows all available outputs from upstream tested nodes — click any field to insert the expression automatically.
See Dynamic Inputs for the full guide on expressions, the field picker, and common patterns.

Node Parameters

All nodes share a common parameter structure: Parameters support static values, {{ }} expressions, and dynamic option loading from connected external services.