Dynamic Inputs
Every node in AgentVerse produces a structured JSON output when it runs. Dynamic inputs let you reference that output in any downstream node’s parameters — turning static configuration into data-driven workflows.
How It Works
When you test a node using the Test button, AgentVerse captures the node’s real output. A link icon ( ⚡ ) then appears next to every parameter in downstream nodes. Clicking it opens a field picker showing all available outputs from upstream nodes — click any field to insert it as an expression.Test the upstream node
Select the node whose output you want to reference. Click Test in the node panel. The node executes and its output is captured and displayed.
Open the downstream node
Click the node where you want to use the upstream data. Any parameter that supports expressions will show a link icon (⚡) when hovered.
Click the link icon
Click the ⚡ icon next to the parameter. A picker opens showing all available fields from upstream nodes, organised by node name.
The field picker is only populated after an upstream node has been tested. If you don’t see any fields, test the upstream node first.
The {{ }} Expression Syntax
Expressions are written inside double curly braces: {{ }}. You can reference any field from any upstream node that has run.
Basic Field Reference
message field:
Nested Fields
Use dot notation to traverse nested objects:Array Items
Reference a specific index in an array:Multiple Expressions in One Field
Expressions can be embedded inside a string with other text:Available Node Outputs
Each node exposes its output under its node name — the label shown in the canvas. If you rename a node, the expression path updates accordingly.| Node | Example Expression |
|---|---|
| Webhook Trigger | {{ webhook.body.message }} |
| AI Agent | {{ aiAgent.text }} |
| Airtable | {{ airtable.fields.Name }} |
| HTTP Request | {{ httpRequest.data.id }} |
| SubVerse Agents | {{ subverseAgents.extractedData.intent }} |
| For Loop | {{ forLoop.item }} |
| Conditions | {{ conditions.outputIndex }} |
Testing Expressions
Before activating your orchestration, verify expressions are resolving correctly:- Test each node in sequence — start from the trigger and test nodes one by one.
- Check the output panel — each tested node shows its full JSON output. Confirm the field you’re referencing is present.
- Use the expression editor — hover the parameter field and click ⚡ to browse and validate available fields.
Common Patterns
Pass webhook data to an AI prompt
Build a dynamic Slack message from AI output
Reference extracted data from a SubVerse AI conversation
Use loop item data inside a loop
When iterating with a For Loop, each iteration exposes the current item:Related Pages
- Node Types — Understand all node categories and their outputs
- Quickstart — See dynamic inputs in action in a real orchestration
- For Loop — Iterating over arrays with dynamic item references