Web Search

The Web Search node performs a web search and returns structured results. Use it to find relevant pages, research topics, discover competitors, or gather data that doesn't have an API.

Web Search node
Web Search: search the web from your workflow

Configuration

FieldTypeRequiredDescription
QueryFX formulaYesThe search query. Supports variables: {{trigger.body.topic}} competitors
Max resultsNumberNoNumber of results to return. Default: 10. Max: 50
RegionSelectNoTarget country/region for localized results
LanguageSelectNoPreferred language for results
Time rangeSelectNoFilter by recency: Past hour, day, week, month, year
Site filterTextNoRestrict results to a specific domain (e.g., site:reddit.com)

Output variables

{{web_search.results}}              → array of result objects
{{web_search.results[0].url}}       → page URL
{{web_search.results[0].title}}     → page title
{{web_search.results[0].snippet}}   → text snippet / description
{{web_search.results[0].domain}}    → domain name
{{web_search.count}}                → number of results returned

Common patterns

Research pipeline

Manual Trigger (topic) → Web Search (topic + "2024 trends") →
  For Each (result) → Scrape Page (result.url) → TinyGPT (summarize) →
  GPT Writer (compile research report) → Send Email

Lead discovery

Schedule (weekly) → Web Search ("hiring [role] [city]") →
  For Each (result) → Scrape Page (result.url) →
  TinyGPT (extract company name, contact) → Google Sheets (append leads)

Content monitoring

Schedule (daily) → Web Search (brand name, time range: past 24h) →
  If-Else (new mentions found?) → Slack (#brand-mentions: "5 new mentions today")

Competitor pricing check

Schedule (weekly) → Web Search (competitor name + "pricing") →
  Scrape Page (first result) → TinyGPT (extract pricing tiers) →
  Google Sheets (log pricing history)

Tips for better results

TipExample
Use quotes for exact phrases"TinyCommand review"
Combine with site filtersite:g2.com automation platform
Add date context{{trigger.body.topic}} 2024 2025
Use negative keywordsCRM software -free -trial
Be specific"B2B SaaS lead routing automation" not just lead routing
Note

Web Search costs 10 credits per execution. Results are real-time: you'll get current search results, not cached data.

Tip

Combine Web Search with Scrape Page for a powerful research pipeline. Web Search finds the right pages; Scrape Page extracts the content.