🔓 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

Firecrawl + OpenAI, competitor insights on demand

Lisa Granqvist Partner Workflow Automation Expert

You open a competitor’s site to “do a quick review,” then 40 minutes later you have 18 tabs, a few half-written notes, and no clean takeaway you can actually share.

Marketing managers feel it during campaign planning. Agency strategists hit it when they’re prepping a pitch. And founders doing their own research get stuck in the same loop. This competitor insights automation turns one URL into a structured breakdown and a set of product or positioning ideas you can use.

You’ll see what the workflow does end-to-end, what you need to run it, and how to adapt the output so it fits your team’s process.

How This Automation Works

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

n8n Workflow Template: Firecrawl + OpenAI, competitor insights on demand

Why This Matters: Competitor Research That Actually Gets Used

Manual competitor research usually fails for one boring reason: it’s not repeatable. One person screenshots pricing, another skims the homepage, someone else pastes random lines into a doc, and by the time you want to compare two brands side by side, you’re rebuilding the whole thing from scratch. It also creates a weird mental tax. You’re trying to “analyze” while you’re still collecting information, which is how you end up with vague conclusions like “their messaging is strong.” Strong how? For who?

It adds up fast. Here’s where it breaks down in real life:

  • You spend about 30 minutes per site just finding the important pages (features, pricing, use cases, proof).
  • Notes end up unstructured, so sharing them internally becomes a second project.
  • Two people can review the same site and come back with totally different “insights,” which means the team debates opinions instead of evidence.
  • When you need fresh angles for ads, landing pages, or product positioning, you restart the whole research loop again.

What You’ll Build: A URL-to-Report Competitor Analyzer

This workflow takes a single website URL and turns it into a clear, readable report. You submit the URL through an n8n form trigger (the template uses a manual form, but you can swap in a webhook later). n8n sends that URL to Firecrawl, which crawls the site and returns structured content like page text, metadata, and the general layout of what’s on the site. Then an OpenAI-powered agent analyzes that scraped data using your prompt, summarizing what the company does and generating product ideas or strategic angles based on what it finds. Finally, n8n renders everything into an HTML output so you can skim it quickly or paste it into a doc, email, or internal channel.

The workflow starts with one URL. Firecrawl does the heavy lifting of collecting and cleaning the website content. OpenAI turns that content into decisions: a summary you can share, plus ideas you can test.

What You’re Building

Expected Results

Say you review 5 competitor sites before a positioning workshop. Manually, even a “quick” pass is about 45 minutes per site once you open pages, take notes, and write a clean summary, so you’re looking at roughly 4 hours. With this workflow, you can submit 5 URLs in about 10 minutes total, then wait while Firecrawl + OpenAI processes each one (often around 5–10 minutes per site). You still review the output, but you’re reviewing a report, not hunting for information.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Firecrawl for crawling and extracting website content
  • OpenAI to generate summaries and product ideas
  • Firecrawl API key (get it from your Firecrawl dashboard)

Skill level: Beginner. You’ll mostly paste API keys, test one URL, and adjust the prompt to match what you want to learn.

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

Step by Step

You submit a URL. The workflow starts with an n8n form trigger where you paste a competitor or reference website. Keep it to real pages (homepages, landing pages, pricing pages). Garbage in, garbage out.

The site content gets collected and cleaned. n8n sends the URL into Firecrawl through an HTTP request. Firecrawl crawls and returns structured text and metadata so you’re not scraping manually or copying chunks into a doc.

AI turns the crawl into insights. An AI Agent powered by the OpenAI Chat Model reads the Firecrawl output and produces a summary of what the company does, who it targets, and what angles stand out. The same step can also generate product ideas based on gaps, adjacent markets, or positioning.

A report is rendered for sharing. The workflow formats the response as HTML output, which is easy to skim and easy to paste into an internal wiki, an email, or a client deliverable.

You can easily modify the analysis prompt to focus on pricing, UX critique, or ad angles based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Form Trigger

This workflow starts when a user submits a URL through a form.

  1. Add the Incoming Form Trigger node as the workflow trigger.
  2. Set Form Title to Website URL.
  3. In Form Fields, add a field with Field Label url and Placeholder https://tenwasap.com.

Tip: Use a real public URL when testing so the scraper can access the page content.

Step 2: Connect Firecrawl and Fetch Website Content

The workflow pulls site content using the Firecrawl API via an HTTP request.

  1. Add the Fetch Site Content node and connect it to Incoming Form Trigger.
  2. Set URL to https://api.firecrawl.dev/v1/scrape.
  3. Set Method to POST and enable Send Body and Send Headers.
  4. Set Specify Body to json and JSON Body to ={ "url": "{{ $json.url }}", "formats": ["markdown"], "onlyMainContent": true }.
  5. In Header Parameters, set Authorization to =Bearer [CONFIGURE_YOUR_API_KEY] and Content-Type to application/json.

⚠️ Common Pitfall: Replace [CONFIGURE_YOUR_API_KEY] with your Firecrawl API key or the request will fail.

Step 3: Set Up the AI Analysis

The AI agent analyzes the scraped content and generates structured HTML output.

  1. Add the Product Idea Analyst node and connect it to Fetch Site Content.
  2. Set Prompt Type to define.
  3. Set Text to the full prompt, including the expressions {{ $('Incoming Form Trigger').item.json.url }} and {{ $json.data.markdown }}.
  4. Connect OpenAI Chat Engine as the language model for Product Idea Analyst.
  5. Credential Required: Connect your openAiApi credentials in OpenAI Chat Engine (AI credentials are set on the parent model node, not the agent).

Tip: The prompt instructs the model to output HTML—ensure you keep the line that requests “structured beautiful HTML” so the next step can render it correctly.

Step 4: Configure the HTML Output

This step renders the model’s HTML response for display.

  1. Add the Render HTML Output node and connect it to Product Idea Analyst.
  2. Set HTML to {{ $json.output }}.

Step 5: Test and Activate Your Workflow

Verify the workflow works end-to-end before enabling it for production use.

  1. Click Test Workflow and submit a URL in Incoming Form Trigger.
  2. Confirm Fetch Site Content returns markdown in $json.data.markdown.
  3. Check that Product Idea Analyst produces HTML in $json.output and Render HTML Output displays it.
  4. When successful, toggle the workflow to Active to start accepting live form submissions.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Firecrawl credentials can expire or need specific permissions. If things break, check your Firecrawl API key in the n8n HTTP Request node 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 competitor insights automation?

About 30 minutes if you already have your API keys.

Is coding required for this competitor insights automation?

No. You’ll connect Firecrawl and OpenAI, then tweak a prompt and a couple of fields.

Is n8n free to use for this competitor insights automation 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 OpenAI API costs, which can be a few cents per analysis depending on model and page size.

Where can I host n8n to run this competitor insights 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 competitor insights automation workflow for different use cases?

Yes, and you should. The easiest win is editing the AI Agent prompt so it focuses on what you care about (pricing teardown, target audience, UX critique, or ad angles). You can also change the “Fetch Site Content” HTTP Request parameters to adjust Firecrawl’s output format, then update the “Render HTML Output” node if you’d rather produce Markdown for Notion or plain text for email. If you want this to run from another tool, replace the form trigger with a webhook and pass the URL in automatically.

Why is my Firecrawl connection failing in this competitor insights automation?

Usually it’s an invalid or expired API key in the HTTP Request node. It can also fail when a site blocks crawlers or requires authentication, so try testing with a simple public URL first. If you’re sending malformed URLs (missing https://), Firecrawl will reject them. Finally, watch your Firecrawl usage limits, because hitting the cap can look like a random failure.

What volume can this competitor insights automation workflow process?

If you self-host n8n, there’s no execution limit (it mostly depends on your server and API rate limits). On n8n Cloud, your monthly execution allowance depends on plan, and high-volume crawling can burn through it quickly. Practically, most teams run this in batches of 10–50 URLs at a time, then review the outputs. Firecrawl and OpenAI costs become the bigger limiter before n8n does.

Is this competitor insights automation better than using Zapier or Make?

Often, yes, because this type of workflow benefits from more flexible logic and better control over the AI prompt and output formatting. n8n also gives you a self-hosting route, which matters if you run a lot of analyses. Zapier and Make can still do it, but once you start handling longer content, branching prompts, or storing multiple outputs, it gets clunky and pricey. If your needs are “URL in, message out” with zero customization, those tools can be fine. Talk to an automation expert if you’re not sure which fits.

Once this is in place, competitor reviews stop being a messy “research day” and turn into a simple input: URL in, report out. Honestly, it’s a relief.

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