Web Search
Overview
The Web Search Node enables your workflow to search the internet in real time. It retrieves up-to-date information, articles, summaries, and metadata from web sources based on a user-defined query.
Description
Search the live web.
The Web Search Node connects your workflow to a search engine using AI-assisted processing.
Research
Find latest news, articles, or facts.
Monitoring
Track brand mentions or competitor updates.
It automatically searches, extracts snippets, and optionally provides an AI-generated summary.
Input Parameters
The node accepts a search query.
searchQuerystringRequired"latest AI trends 2025"Output Parameters
The node returns structured search results.
summarystringOptionalresultsarrayOptionalresults[].titlestringOptionalresults[].urlstringOptionalresults[].snippetstringOptionalsearchIdstringOptionalOutput Type
Output Type: JSON
Returns a structured JSON object with summary and results list.
Example Usage
Example 1: Basic Search
Find programming trends.
{ "searchQuery": "Top programming languages 2025"}
{ "summary": "Python and Rust continue to dominate...", "results": [ { "title": "Top Languages 2025", "url": "https://example.com/languages", "snippet": "Python remains popular..." } ], "searchId": "search-123"}
Example 2: Research Topic
Climate change impact.
{ "searchQuery": "impact of climate change on agriculture"}
{ "summary": "Rising temperatures affect crop yields...", "results": [ { "title": "Climate & Agriculture", "url": "https://example.org/climate", "snippet": "Study shows..." } ]}
How to Use in a No-Code Workflow
Add the Node
Drag the Web Search node into your workflow.
Enter Query
Type your Search Query or map it from a user input node.
Run
Execute the node to fetch results.
Use Data
Pass the summary or results to a Text Generation node for further processing.
Best Practices
- Be specific with your queries for better relevance.
- Use the
summaryoutput for quick insights.
Do / Don’t
- ✔️ Combine with AI nodes to summarize complex topics.
- ✔️ Log search results for future reference.
- ❌ Don’t use extremely broad terms (e.g., "news").
- ❌ Don’t rely on real-time data for critical financial decisions without verification.
Common Errors
Missing searchQueryErrorOptionalNo results foundWarningOptionalExample Workflow Integration
Use Case: Competitor Analysis Report
Generate a report on a competitor.
- Input: User provides company name.
- Web Search: Search for "latest news about
{{company}}". - Text Generation (AI): Summarize the search results into a report.
- Send Mail: Email the report to the user.
Workflow Data Flow:
{{input.company}} → {{webSearch.searchQuery}}
{{webSearch.summary}} → {{ai.prompt}}
{{ai.response}} → {{sendMail.body}}
