🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Bright Data to Google Docs, lead briefs ready fast

Lisa Granqvist Partner Workflow Automation Expert

You open a prospect’s website, promise yourself “five minutes,” and suddenly you’re 40 minutes deep in menus, broken pages, and copy-pasted notes that don’t quite add up.

Sales reps feel it right before a call. Agency strategists feel it when they need quick positioning angles. Founders doing their own outbound feel it too. This Bright Data briefs automation turns a single URL into a clean, shareable Google Doc you can actually use.

You’ll see how it finds the right pages (“About”, “Team”, “Contact”), pulls the content reliably, and has AI assemble a short opportunity brief that’s ready for outreach.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Bright Data to Google Docs, lead briefs ready fast

Why This Matters: Prospect research is slow (and inconsistent)

Prospect research is one of those tasks that looks simple until you do it all day. Homepages are fluffy, navigation is unpredictable, and the pages you actually need are buried three clicks deep. Then you’re copying chunks into a doc, trying to summarize on the fly, and hoping you didn’t miss the one line that explains what the company really does. It’s not just time. It’s mental overhead, and it shows up as generic outreach that gets ignored.

It adds up fast. Here’s where it usually breaks down.

  • You bounce between tabs for “About”, “Team”, “Careers”, and “Contact” and still aren’t sure which page matters.
  • Manual notes turn into a messy wall of text, so you don’t reuse them for the next touchpoint.
  • Some sites block scrapers or load content weirdly, which means your “quick research” becomes a troubleshooting session.
  • Two people can research the same company and come away with totally different takeaways.

What You’ll Build: URL-to-brief automation in Google Docs

This workflow starts with a simple chat message containing a company URL (from the n8n chat trigger). It uses Bright Data’s Web Unblocker to fetch the site safely, then pulls a list of links from the homepage and sitemap-style pages it can discover. An AI agent reviews those URLs and keeps only the ones that usually contain the real story, like “about-us,” “team,” and “contact.” Next, Bright Data fetches those selected pages, the workflow extracts the main HTML body, and a second AI agent turns each page into a short opportunity-focused summary. Finally, everything is merged, deduplicated, and shaped into a cohesive brief that’s formatted to drop into a Google Doc for easy sharing.

The workflow begins with one URL. Then it narrows the site down to a small set of high-signal pages, summarizes each, and produces a single brief you can use for outreach or call prep. The result is consistent, readable, and repeatable.

What You’re Building

Expected Results

Say you research 10 new companies a week. Manually, a “quick scan” often turns into about 30 minutes per site between hunting for the right pages and writing something coherent, which is roughly 5 hours weekly. With this workflow, you send one URL in chat (about a minute), then wait while Bright Data and the AI agents process and format the brief (often around 5–10 minutes of background time). You still skim the final doc, but you’re not building it from scratch, so most teams get several hours back each week.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Bright Data for scraping with Web Unblocker.
  • Google Drive / Google Docs to store and share the brief.
  • OpenRouter API key (get it from your OpenRouter dashboard).

Skill level: Intermediate. You’ll connect credentials, tweak prompts, and confirm Google Drive permissions.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A chat message kicks things off. You paste a company URL into your n8n chat (or any chat tool wired to the trigger), and the workflow captures it as the single source of truth.

The website gets fetched reliably. Bright Data pulls the homepage and related starting pages using Web Unblocker, which helps when a site is aggressive about blocking bots or behaves differently outside a browser.

AI narrows the scope to high-signal pages. The workflow extracts links, then an AI agent selects the URLs most likely to contain company info (About, Team, Contact). That short list is what gets scraped next, so you’re not wasting time on blog archives.

Summaries are combined into a brief. Each page is summarized for needs and opportunities, then merged and deduplicated into a final report that’s formatted for a Google Doc you can share with your team.

You can easily modify the prompt focus to match your offer and target market based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Chat Trigger

Set up the chat entry point that collects the target company URL.

  1. Add and open Incoming Chat Trigger.
  2. Enable Public to true.
  3. Set Initial Messages to Welcome, I am your business opportunity detection agent. Enter the URL of the company to be analyzed, and I will search their website for the best business opportunities based on your activity.
  4. Keep Response Mode set to lastNode if you want the final AI summary returned to the chat.

Step 2: Connect Bright Data and Fetch Site Pages

Prepare inputs and crawl the site to collect pages to analyze.

  1. Open Prepare Inputs and set url to {{ $json.chatInput }}.
  2. In Prepare Inputs, set sitemap to sitemap.xml.
  3. Open Fetch Initial Pages and set URL to {{ $json.url }}.
  4. In Fetch Initial Pages, set Zone to web_unlocker1 and Country to us, with Format as json.
  5. Credential Required: Connect your brightdataApi credentials in Fetch Initial Pages.
  6. Open Fetch Selected Pages and set URL to {{ $json.url }}, Zone to web_unlocker1, Country to us, and Format to json.
  7. Credential Required: Connect your brightdataApi credentials in Fetch Selected Pages.
Tip: Ensure the incoming URL includes the protocol (e.g., https://) to avoid crawl failures in Fetch Initial Pages and Fetch Selected Pages.

Step 3: Set Up Page Discovery and Filtering

Extract links, pick relevant pages, and filter the URL list for further analysis.

  1. Open Parse Link Targets and keep the provided JavaScript to extract <a href> URLs from items[0].json.body.
  2. Open Select Relevant Pages and set Text to {{ $json }}.
  3. In Select Relevant Pages, keep Prompt Type as define and confirm Has Output Parser is enabled.
  4. Open Filter URL List and keep the provided JavaScript that extracts item.json.output?.[0]?.url and drops empty values.
⚠️ Common Pitfall: If Select Relevant Pages returns relative URLs or anchors, Filter URL List may output nothing. Ensure the system message enforces absolute URLs.

Step 4: Configure HTML Extraction and Opportunity Detection

Extract the body content and run AI analysis to find business opportunities on selected pages.

  1. Open Extract Body HTML and set Operation to extractHtmlContent and Data Property Name to body.
  2. In Extract Body HTML, confirm CSS Selector is body.
  3. Open Detect Business Opportunities and set Text to {{ $json.body }}.
  4. Ensure Detect Business Opportunities uses Prompt Type define with Has Output Parser enabled.

Step 5: Set Up AI Models and Output Parsers

Connect the OpenRouter models and structured parsers used by the AI agents.

  1. Open OpenRouter Chat Model A and set Model to openai/o4-mini with Temperature 0.
  2. Credential Required: Connect your openRouterApi credentials in OpenRouter Chat Model A.
  3. Open Structured Parser A and set Schema Type to manual with Input Schema { "url": "https://www.example.com/about.html" }. Enable Auto Fix.
  4. Open OpenRouter Chat Model B and set Model to openai/gpt-5 with Temperature 0.
  5. Credential Required: Connect your openRouterApi credentials in OpenRouter Chat Model B.
  6. Open Structured Parser B and set Schema Type to manual with Input Schema { "summary": "summary" }.
  7. Open OpenRouter Chat Model C and set Model to openai/gpt-5 with Temperature 0.
  8. Credential Required: Connect your openRouterApi credentials in OpenRouter Chat Model C.
Tip: Structured Parser A and Structured Parser B are AI sub-nodes. Add OpenRouter credentials to their parent nodes (OpenRouter Chat Model A and OpenRouter Chat Model B), not the parsers themselves.

Step 6: Configure Aggregation and Summary Output

Merge page-level outputs and produce a deduplicated summary.

  1. Open Combine Page Results and keep the provided JavaScript that merges all output objects into mergedOutput.
  2. Open Deduplicate Summary and set Text to {{ $json.mergedOutput }}.
  3. Verify the system message in Deduplicate Summary instructs the model to eliminate redundancies and format for a Google Doc with headings.

Step 7: Test and Activate Your Workflow

Run a full test to confirm crawling, AI analysis, and final response formatting.

  1. Click Execute Workflow and submit a real website URL in Incoming Chat Trigger.
  2. Confirm Fetch Initial Pages returns a JSON body and Parse Link Targets outputs URL items.
  3. Verify Detect Business Opportunities produces JSON output and Deduplicate Summary returns a clean, summarized response.
  4. When satisfied, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Bright Data credentials can expire or need specific permissions. If things break, check your Bright Data zone status and API key settings in n8n credentials first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Quick Answers

What’s the setup time for this Bright Data briefs automation?

About 30 minutes once you have your API keys.

Is coding required for this lead brief automation?

No. You’ll mostly connect accounts and adjust a few prompts and fields.

Is n8n free to use for this Bright Data briefs workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in Bright Data usage plus OpenRouter model costs per request.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this Bright Data briefs workflow for different use cases?

Yes, and you should. The quickest win is editing the “systemMessage” in the AI Agent nodes to match your ICP and what you sell, like “look for compliance gaps” or “spot hiring signals.” You can also swap the OpenRouter model in the OpenRouter Chat Model nodes if you want cheaper runs for high volume. If you want different sourcing, change the link parsing and filtering so it prioritizes pages like “pricing,” “case studies,” or “security.”

Why is my Bright Data connection failing in this workflow?

Usually it’s an API key or zone issue. Regenerate your Bright Data API key, confirm the Web Unblocker zone is active, then update the credential in n8n. If it works for some sites and not others, you may be hitting tougher bot protection and need to adjust Bright Data settings. Also check the input URL, because redirects and malformed links can cause fetch failures that look like auth errors.

What volume can this Bright Data briefs workflow process?

If you self-host, there’s no fixed execution limit (it depends on your server). On n8n Cloud, your monthly executions depend on the plan, and this workflow usually runs one execution per company URL. Practically, the limiting factor is external calls: Bright Data fetches plus AI requests. For many teams, processing a few dozen briefs a day is realistic if you keep prompts tight and avoid scraping unnecessary pages.

Is this Bright Data briefs automation better than using Zapier or Make?

Often, yes, because this flow needs multi-step logic (link extraction, filtering, merging, and deduping) that gets awkward and expensive in simpler tools. n8n also gives you more control over how data is transformed between steps, which matters when you want consistent briefs. Zapier or Make can still work if you only need a lightweight “scrape one page, summarize, send to doc” setup. But once you care about selecting the right pages and keeping output quality steady, n8n is usually the calmer option. Talk to an automation expert if you’re not sure which fits.

Once this is running, you stop “researching” and start showing up prepared. The workflow handles the repetitive stuff, and you get to focus on the message that actually wins replies.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal