An n8n community node for integrating You.com APIs into your n8n workflows. Search the web and extract content from URLs.
Follow the installation guide in the n8n community nodes documentation.
npm install @youdotcom-oss/n8n-nodes-youdotcomOr install via the n8n UI:
- Go to Settings > Community Nodes
- Select Install
- Enter
@youdotcom-oss/n8n-nodes-youdotcom - Agree to the risks and select Install
Search the web and news using You.com's search API.
| Parameter | Required | Description |
|---|---|---|
| Query | Yes | The search query (supports search operators, see below) |
| Count | No | Maximum number of results per section (1-100) |
| Country | No | Country code for geographical focus (e.g., US, GB, DE) |
| Freshness | No | Filter by recency: day, week, month, or year |
| Language | No | Language of results (BCP 47 format) |
| Livecrawl | No | Fetch full page content for web, news, or all results |
| Livecrawl Format | No | Format for livecrawled content (HTML or Markdown) |
| Offset | No | Pagination offset (0-9) |
| Safe Search | No | Content moderation: off, moderate, or strict |
Search operators:
Include these directly in your query to refine results. See search operators documentation for details.
| Operator | Example | Description |
|---|---|---|
site: |
site:github.com |
Restrict to a specific domain (including subdomains) |
filetype: |
filetype:pdf |
Filter by file type |
+ |
+GAAP |
Require exact term in results |
- |
-marketing |
Exclude exact term from results |
AND |
Python AND PyTorch |
Logical AND to combine expressions |
OR |
Python OR PyTorch |
Logical OR to combine expressions |
NOT |
NOT site:example.com |
Negate an expression |
Example: machine learning (Python OR PyTorch) -TensorFlow filetype:pdf searches for ML content about Python or PyTorch, excluding TensorFlow, in PDF format.
Extract content from one or more URLs. Returns clean text, HTML, or structured metadata.
| Parameter | Required | Description |
|---|---|---|
| URLs | Yes | Comma-separated list of URLs to extract content from |
| Formats | No | Output formats: Markdown, HTML, and/or Metadata |
| Crawl Timeout | No | Timeout in seconds for page crawling (1-60) |
Output formats:
- Markdown - Clean text content, ideal for LLM processing
- HTML - Full HTML with layout preserved
- Metadata - Structured data (JSON-LD, OpenGraph, Twitter Cards)
- Visit you.com/platform/api-keys to get an API key
- In n8n, go to Credentials > New Credential
- Search for "You.com API"
- Enter your API key and save
- Research workflows: Search for information and extract full content from top results
- Content aggregation: Monitor news across topics with customizable filters
- Data enrichment: Extract metadata from URLs in your workflows
# Install dependencies
bun install
# Build the package
bun run build
# Run tests
bun test
# Linting, formatting, and type checking
bun run check- You.com API Documentation
- Search API Reference
- Search Operators
- Contents API Reference
- n8n Community Nodes Documentation
MIT