🔓 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

Google Maps to Airtable, leads captured with Apify

Lisa Granqvist Partner Workflow Automation Expert

Copying Google Maps results into a spreadsheet feels fine for the first 10 leads. Then you hit 50. Suddenly you’re juggling tabs, losing track of which listings you already captured, and still missing the one field you actually need: a usable email.

This Apify Airtable leads setup hits marketers doing local campaigns first, but sales teams and owners at small local businesses feel it too. You end up spending about 2 hours on “research” that is really just data entry. And it’s honestly draining.

This workflow pulls Google Maps leads with Apify, cleans the fields, visits each website to find an email using GPT, and saves everything into Airtable so you can start outreach without the messy prep work.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Google Maps to Airtable, leads captured with Apify

The Problem: Google Maps Leads Are Easy to Find, Hard to Use

Google Maps is packed with prospects, but the data is awkward to operationalize. You collect a business name, grab a phone number, maybe copy the website, and then you still have to hunt for an email. One-by-one. Meanwhile your “lead list” ends up inconsistent: different address formats, missing websites, duplicate entries, and notes scattered across tabs. And the worst part is you can’t trust your list, so outreach slows down because you keep double-checking everything.

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

  • Manual copy-paste across Google Maps, websites, and Airtable eats an afternoon for a list of 50.
  • Email hunting turns into a browser scavenger hunt, and you still end up with generic inboxes or nothing.
  • Address and phone formatting changes from one listing to the next, which makes filtering and segmentation painful later.
  • Without a repeatable process, you can’t refresh leads weekly, so your list goes stale.

The Solution: Scrape, Clean, Extract Emails, Then Save to Airtable

This workflow turns Google Maps into a steady pipeline of structured leads. You start by running Apify’s Google Maps Extractor with a keyword and location (like “real estate agency” in Paris) and a target count (like 50). n8n grabs the results via HTTP request, then immediately standardizes them into the exact fields you actually want to work with: business name, address, phone, website, and the Maps URL. Next, it loops through each lead and visits the website automatically, downloading the raw HTML content in the background. Finally, GPT scans that content and returns the most relevant contact email it can find, or “Null” if none exists. Everything lands in Airtable as clean rows you can sort, tag, and use for outreach.

The workflow starts with a manual trigger, so you can test safely and run it when you want. Apify returns the lead data, n8n cleans it, then it checks each website and asks GPT to extract one usable email. Airtable becomes your organized, ready-to-work list.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you need 50 leads for “therapists in Austin.” Manually, you might spend about 2 minutes per listing to copy name, phone, website, and URL (around 100 minutes), plus another minute or two per website hunting for an email (another 60 to 90 minutes). Call it roughly 3 hours. With this workflow, you run Apify once, let n8n loop through the sites, and your only “hands-on” time is the setup and a quick sanity check in Airtable. Most teams get the same list in well under an hour of total elapsed time, with maybe 10 minutes of actual effort.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Apify account to run the Google Maps Extractor actor.
  • Airtable to store leads in a searchable base.
  • OpenAI API key (get it from your OpenAI API dashboard)

Skill level: Intermediate. You will paste an API endpoint, map a few fields, and test runs with small batches first.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

Manual launch trigger. You click “Execute workflow” in n8n when you want a fresh batch of Google Maps leads. This is useful early on because you can validate the output before you run it routinely.

Lead scraping through Apify. n8n sends a POST request to Apify’s Google Maps Extractor endpoint with your keyword, location, and result count. Apify returns structured listing data, which means you’re not scraping pages yourself.

Cleaning and batching. The workflow keeps only the fields you care about (name, address, website, phone, URL), then processes leads in batches (for example, 20 at a time) so you don’t slam APIs and get throttled.

Email extraction and storage. For each lead, n8n downloads the website HTML and asks the OpenAI model to output only the best email or “Null.” The final step creates a record in Airtable with every mapped field ready for filtering and outreach.

You can easily modify the Apify search inputs to target a new niche or city based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Manual Trigger

Start the workflow manually so you can validate each stage before automating or scheduling it.

  1. Add and keep Manual Launch Trigger as the starting node.
  2. Connect Manual Launch Trigger to Retrieve Maps Leads via Apify to match the execution flow.

Step 2: Connect Apify and Standardize Lead Records

Pull Google Maps leads from Apify and normalize the response fields for downstream processing.

  1. Open Retrieve Maps Leads via Apify and set Method to POST.
  2. Set URL to URL APIFY and Send Body to true.
  3. Set Specify Body to json and paste the JSON payload exactly as shown in the node, including "locationQuery": "Paris, France" and "searchStringsArray": ["centre de formation"].
  4. In Standardize Map Records, map the fields using the existing expressions, for example Nom du centre de formation{{ $json.title }} and Site internet{{ $json.website }}.
  5. Connect Retrieve Maps Leads via ApifyStandardize Map RecordsBatch Process Contacts to keep the execution order consistent.
⚠️ Common Pitfall: If Apify requires authentication, add the appropriate headers or query parameters to Retrieve Maps Leads via Apify even though no credentials are configured in the node.

Step 3: Batch, Isolate Websites, and Download HTML

Process leads in manageable batches, isolate website URLs, and fetch the site HTML for email extraction.

  1. In Batch Process Contacts, set Batch Size to 10 to control load on downstream nodes.
  2. Connect the second output of Batch Process Contacts to Isolate Website Links (as in the workflow).
  3. In Isolate Website Links, set Site internet to {{ $json['Site internet'] }}.
  4. In Download Site HTML, set URL to {{ $json['Site internet'] }} to pull each site’s HTML.
  5. Ensure the flow is Isolate Website LinksDownload Site HTMLAI Email Extraction.
If a website field is empty, the HTTP request may fail. Consider adding a filter or IF node later to skip missing URLs.

Step 4: Set Up AI Email Extraction

Use the OpenAI-powered node to extract a single authoritative email from the downloaded HTML.

  1. Open AI Email Extraction and confirm the model is set to gpt-4.1-mini.
  2. Keep the prompt content exactly as configured, including the appended HTML variable {{ $json.data }}.
  3. Credential Required: Connect your openAiApi credentials in AI Email Extraction.

Step 5: Configure Airtable Output

Store the standardized lead data and extracted email into Airtable.

  1. Open Store Leads in Airtable and set Operation to create.
  2. Select your Airtable Base and Table (currently configured placeholders: [YOUR_ID]).
  3. Map the columns using the provided expressions, including Email{{ $json.message.content }} and URL{{ $('Standardize Map Records').item.json.URL }}.
  4. Credential Required: Connect your airtableTokenApi credentials in Store Leads in Airtable.

Step 6: Test and Activate Your Workflow

Run a controlled test to verify each node’s output, then activate for production use.

  1. Click Execute Workflow from Manual Launch Trigger and watch data flow through Retrieve Maps Leads via Apify, Standardize Map Records, and Batch Process Contacts.
  2. Confirm Download Site HTML returns HTML content in $json.data and AI Email Extraction outputs a single email or Null.
  3. Verify new records appear in Airtable with Title, Street, Website, Phone Number, Email, and URL populated as expected.
  4. Once validated, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Apify credentials can expire or need specific permissions. If things break, check your Apify token and actor run permissions in the Apify console 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.

Frequently Asked Questions

How long does it take to set up this Apify Airtable leads automation?

About 30–60 minutes if your Apify, Airtable, and OpenAI accounts are ready.

Do I need coding skills to automate Apify Airtable leads?

No. You will mostly paste an Apify endpoint and map Airtable fields in n8n.

Is n8n free to use for this Apify Airtable leads 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 (usually a few cents per batch, depending on how much HTML you send).

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 customize this Apify Airtable leads workflow for a different niche or city?

Yes, and it’s the whole point. You change the keyword and location you send to Apify in the “Retrieve Maps Leads via Apify” HTTP Request node, then keep the rest of the workflow the same. Common tweaks include fetching more than 50 results, filtering to only listings with websites, and adjusting the GPT prompt to prefer specific emails (like “owner@” or “contact@”).

Why is my Apify connection failing in this workflow?

Usually it’s an invalid or expired Apify token in your HTTP Request headers. It can also fail if you copied the wrong Apify endpoint (make sure you used the “Run Actor synchronously and get dataset items” API). If you’re pulling a lot of results at once, rate limits can show up as timeouts, so lowering batch sizes or adding a short wait between calls helps.

How many leads can this Apify Airtable leads automation handle?

If you self-host n8n, there’s no hard execution cap (it mostly depends on your server and API limits). On n8n Cloud, your plan limits monthly executions, so a few thousand leads per month is realistic on paid tiers. In practice, batch sizes of 20 keep runs stable when you’re also downloading HTML and calling OpenAI.

Is this Apify Airtable leads automation better than using Zapier or Make?

Often, yes, because this flow isn’t just “send data from A to B.” You’re scraping, cleaning, looping, downloading HTML, and running AI extraction, which means you want control over batching and error handling. n8n is also easier to self-host, so costs don’t spike the moment you scale. Zapier or Make can still work for lightweight versions, but the moment you add website scraping plus AI, it gets fiddly and expensive. If you want help deciding, Talk to an automation expert.

Once this is in place, lead sourcing stops being a chore and starts being a repeatable input to your outreach engine. Set it up once, then spend your time on messaging and follow-up instead.

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