Build a workflow that searches the web automatically
Customize your searches with filters and options
Time needed: About 15 minutes
Prerequisites: An n8n instance (cloud or self-hosted)—see Part 1 if you need to set this up.
What Is You.com?
You.com is an AI-powered search and intelligence platform that provides real-time web data through a developer-friendly API. You.com APIs give you clean, structured JSON responses built for automation.
The You.com n8n node (@youdotcom-oss/n8n-nodes-youdotcom) currently exposes two operations:
Search: Web and news results with filters for freshness, country, language, and full-page content extraction (Livecrawl)
Get Contents: Extract clean Markdown, HTML, or metadata from any URL
Click "Add Option" in the You.com node to access additional filters:
Popular Options:
Option
What It Does
Example
Count
Number of results (1-100)
20
Freshness
How recent
"Past Week"
Country
Geographic focus
"United States"
Language
Results language
"English"
Safe Search
Content filter
"Moderate"
Livecrawl
Livecrawl fetches the full content of each search result page. This is useful when pairing search results with AI for summarization or analysis.
Set Livecrawl to "All Results"
Set Livecrawl Format to "Markdown"
Each result will now include the complete page content
Example: Daily AI News Digest
Let's build something practical. Below is a workflow that runs every morning and collects fresh AI news.
The Workflow:
Configuration:
Schedule Trigger:
Trigger at: 8:00 AM
Days: Monday through Friday
**You.com Node:**
Query: artificial intelligence news breakthroughs
Count: 10
Freshness: Past Day
Send Email Node:
To: your email
Subject: "Your Daily AI News Digest"
Body: Use expressions to format the results
Troubleshooting
"Invalid API Key" Error
Double check your API key is copied correctly
Make sure there are no extra spaces
Verify your You.com account is active
"Node Not Found"
Ensure the community node is installed
Try restarting n8n after installation
Check Settings → Community Nodes
No Results Returned
Try a broader search query
Remove restrictive filters temporarily
Check if your API quota is exhausted
What's Next?
Now that you can search the web from n8n, there's a lot you can build. In Part 3, we will explore creative use cases and show you how to combine web search with AI tools.