# Uber Eats Email Scraper - Bulk Keywords, Decodes Hidden Emails (`code-beat/uber-eats-email-scraper-ultra-fast-and-precise`) Actor

🚗 Uber Eats Email Scraper pulls restaurant and merchant emails at scale using your keywords. 🔓 Decodes hidden addresses with domain filtering. 🍔 Built for food tech sales, delivery SaaS & restaurant lead generation.

- **URL**: https://apify.com/code-beat/uber-eats-email-scraper-ultra-fast-and-precise.md
- **Developed by:** [Code Beat](https://apify.com/code-beat) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### Uber Eats Email Scraper

**Uber Eats Email Scraper** helps you collect publicly available email addresses from Uber Eats listings using the keywords and filters you choose. It’s built for Uber Eats email extraction, Uber Eats lead generation, and fast contact discovery at scale — so marketers, analysts, and researchers can build cleaner outreach lists without spending hours on manual review. 🚀

### What Does Uber Eats Email Scraper Do? 🤖

Uber Eats Email Scraper takes your keywords, optional location filter, custom email domains, and a result limit, then scrapes publicly available Uber Eats data to collect matching contact details. It gathers useful listing context like title, description, and page URL alongside the email address, making it practical for Uber Eats contact scraper workflows and Uber Eats merchant data extraction. Instead of checking listings one by one, you can automate Uber Eats email collection and export structured leads much faster. ✅

### What Can Uber Eats Email Scraper Extract? 📊

This actor captures a focused set of fields designed for Uber Eats email harvesting and Uber Eats restaurant lead list building. Each result includes the keyword that surfaced the listing, basic page context, and the email address found in publicly available sources. That makes it useful for Uber Eats restaurant email scraper tasks, Uber Eats directory scraper use cases, and Uber Eats business email finder projects.

| Data Type | Field Name | Description |
|---|---|---|
| Discovery | `keyword` | The keyword that matched the listing |
| Identity | `title` | The listing title |
| Context | `description` | The listing description or snippet text |
| Navigation | `url` | Direct link to the listing page |
| Contact | `email` | Email address found in public data |

#### Key Features of Uber Eats Email Scraper ⚡

- ✅ **Keyword-Driven Search:** Use your own keywords to find relevant Uber Eats listings for targeted Uber Eats lead generation.
- 📍 **Location Targeting:** Narrow results with a location filter when you want more local Uber Eats customer data scraper or Uber Eats vendor contact scraping results.
- 📧 **Custom Domain Filtering:** Add email domains such as `@gmail.com` or `@yahoo.com` to focus on the kinds of contacts you want.
- 🔄 **Built-In Proxy Support:** Designed for reliable public web data collection with built-in proxy support for stability.
- 📊 **Structured Dataset Output:** Every match is saved in a clean dataset format that’s easy to export and analyze.
- 💾 **Real-Time Saving:** Results are stored as they’re found, helping protect your progress during longer runs.
- ⚙️ **Configurable Limits:** Control collection size with `maxEmails`, which helps keep runs efficient and predictable.
- 🔁 **Resilient Runs:** Includes retries and fallbacks for better stability during Uber Eats marketplace scraping.

### How to Use Uber Eats Email Scraper 🚀

1. **Open the Actor** — Find Uber Eats Email Scraper in Apify.
2. **Add Keywords** — Enter one or more terms you want to search for.
3. **Set Optional Location** — Add a location if you want to narrow results.
4. **Choose Email Domains** — Enter the domains you want to include.
5. **Set the Limit** — Define `maxEmails` to control how many emails to collect.
6. **Start the Run** — Launch the actor and watch the logs as it works.
7. **Export Your Results** — Download the dataset in a format that fits your workflow.

No coding required. 🙌

### Uber Eats Email Scraper Output Format 📦

The actor saves results to a dataset named **Uber Eats Emails Dataset**. Below is an example of the exact output structure you can expect from Uber Eats listing scraper runs.

#### Input Example

```json
{
  "keywords": [
    "manager",
    "founder"
  ],
  "location": "",
  "customDomains": [
    "@gmail.com",
    "@yahoo.com"
  ],
  "maxEmails": 20
}
```

#### Output Example

```json
[
  {
    "keyword": "manager",
    "title": "Sunset Kitchen",
    "description": "Family-friendly restaurant offering delivery and pickup across downtown Chicago.",
    "url": "https://www.ubereats.com/store/sunset-kitchen/chicago-il",
    "email": "info@sunsetkitchen.com"
  }
]
```

| Field | Label | Format | Description |
|---|---|---|---|
| `keyword` | Keyword | text | The keyword that led to the result |
| `title` | Title | text | The listing title |
| `description` | Description | text | The listing description or snippet text |
| `url` | Url | link | Direct URL to the listing page |
| `email` | Email | text | Email address found in the listing data |

### Use Cases of Uber Eats Email Scraper 🎯

**B2B Lead Generation:** Build targeted Uber Eats restaurant lead list data for outreach campaigns, sales prospecting, or partner discovery.

**Email Marketing Campaigns:** Use Uber Eats business email finder results to collect contacts for newsletters, promotions, and follow-ups.

**Market Research:** Analyze Uber Eats marketplace scraping results to understand which businesses appear for specific keywords or regions.

**Vendor Contact Research:** Support Uber Eats vendor contact scraping efforts when you need contact details tied to public listings.

**Data Enrichment:** Combine Uber Eats address and email extraction results with your own CRM or spreadsheet records for richer lead profiles.

### How Much Will Uber Eats Email Scraper Cost You? 💰

Cost depends on your Apify usage and the `maxEmails` limit you set for the run. This actor is designed to help you control spend by capping how many emails it collects, so Uber Eats email extraction stays efficient even for larger searches. If you’re doing Uber Eats data harvesting at scale, setting a clear limit is the easiest way to keep runs predictable. Apify also provides free credits for eligible accounts, and you can monitor usage in the Apify Console while the actor runs. 📈

### Is It Legal to Scrape Uber Eats? ⚖️

This actor works with publicly available data only. It does not require login access or private content, and it is intended for legitimate research, marketing, and lead generation use cases. As with any public web data collection, you’re responsible for complying with applicable laws, platform terms, and anti-spam rules in your region. If you have questions about data removal or responsible use, contact <codebeatapi@gmail.com>.

### Uber Eats Email Scraper Input Parameters 📋

```json
{
  "keywords": [
    "manager",
    "founder"
  ],
  "location": "",
  "customDomains": [
    "@gmail.com",
    "@yahoo.com"
  ],
  "maxEmails": 20
}
```

| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| `keywords` | Array | ✅ Yes | `["manager","founder"]` | One or more keywords or queries used to find matching Uber Eats listings. |
| `location` | String | No | `""` | Optional location filter to narrow results. |
| `customDomains` | Array | No | `["@gmail.com","@yahoo.com"]` | Email domains to include when collecting contacts. |
| `maxEmails` | Integer | No | `20` | Maximum number of emails to collect before the run stops. |

### During the Actor Run ⏱️

You’ll see live logs in the Apify Console as the actor progresses through your keywords and domains. Results are saved in real time, so you can check the dataset while the run is still active. Runtime depends on how broad your keywords are, how many domains you include, and your `maxEmails` setting. If a run returns fewer results than expected, try broader keywords, add more domains, or relax the location filter.

### Final Note ✉️

Start collecting Uber Eats emails in minutes with a simple setup and scalable automation. If you need help or have a feature request, reach out at <codebeatapi@gmail.com>. 🚀

### FAQ — Uber Eats Email Scraper ❓

#### How does Uber Eats Email Scraper find emails?

It uses your keywords and email-domain filters to identify relevant Uber Eats listings and extracts publicly available email addresses from the data it can access. It only returns contacts that appear in public sources.

#### What types of Uber Eats listings can I scrape?

You can scrape public Uber Eats listings that contain an email address in the accessible listing data. If a listing does not expose an email publicly, it won’t be included in the results.

#### What is Uber Eats email extraction useful for?

Uber Eats email extraction is useful for lead generation, contact discovery, market research, and building restaurant outreach lists from public listing data. It can also support Uber Eats merchant data extraction and Uber Eats marketplace scraping workflows.

#### Can I use Uber Eats Email Scraper for local lead generation?

Yes. The location field lets you narrow your search, which can be helpful for local outreach, regional research, and Uber Eats restaurant email scraper campaigns focused on specific areas.

#### How much does Uber Eats Email Scraper collect in one run?

That depends on your keywords, domains, and the `maxEmails` setting. The actor stops once it reaches the limit you set, which helps keep Uber Eats email harvesting controlled and efficient.

#### Why do my results vary between runs?

Results can change based on the keywords you choose, the location filter, and how many public listings include email addresses. Broader keywords and more domain options usually improve coverage.

#### Is Uber Eats Email Scraper good for CRM enrichment?

Yes. The output includes the keyword, title, description, URL, and email, which makes it useful for adding context to leads before importing them into a CRM or spreadsheet.

#### How can I get help or request a feature?

For support, feedback, or custom requests, contact <codebeatapi@gmail.com>.

### Support & Feedback

Found a bug or need help with Uber Eats Email Scraper? Reach out anytime at <codebeatapi@gmail.com>.

### Country & Time Targeting

Both filters are applied to the Google query itself, so they shape which pages
the dork is answered from rather than filtering after the fact.

**Target Country** - runs the search as if from that country (`gl`). Turn on
**Strict country filter** to additionally restrict results to pages Google
attributes to it (`cr=countryXX`); that is much tighter and returns noticeably
fewer results. Leave the country on *Global (no country filter)* for worldwide
results.

**Result Language** - restricts results to a single language (`hl` + `lr`).

**Time Range** - limits results to a publication window: past hour, 24 hours,
week, month, year, or an explicit *Custom range* using **Custom range: from** /
**to** in `YYYY-MM-DD` form. A page Google indexed last week is far more likely
to carry a live mailbox than one it last saw five years ago.

Selecting *Custom range* without either date falls back to no time filter rather
than searching all of time by accident.

# Actor input Schema

## `scrapeMode` (type: `string`):

Find New Emails (default) searches Airbnb by keyword. Clean My List skips searching entirely and instead runs the emails you paste into Email List (below) through the same deliverability checks.

## `keywords` (type: `array`):

A list of keywords or queries to search for.

## `location` (type: `string`):

Location to filter search results.

## `customDomains` (type: `array`):

List of custom email domains

## `emailList` (type: `array`):

Paste the emails you want checked for deliverability. Only used when Scrape Mode is set to "Clean My List".

## `maxEmails` (type: `integer`):

Maximum number of emails to collect. The scraper will stop once this limit is reached. Setting a higher limit allows for more potential results but doesn't guarantee reaching that number. This helps save costs by controlling scraping time.

## `verificationMode` (type: `string`):

Quick Check (default) validates syntax and MX records only - fast, no added latency. Deep Check additionally flags disposable-domain addresses and checks each domain against a public spam blocklist (Spamhaus DBL). Off skips validation entirely.

## `minQualityScore` (type: `number`):

Drop any contact whose quality score (0.0-1.0) falls below this. Leave at 0 for no filter.

## `excludeCatchAll` (type: `boolean`):

Drop contacts on domains confirmed to accept mail for any address (only applies when that signal is available).

## `requireMxValid` (type: `boolean`):

Drop any contact whose domain has no valid mail server (MX record).

## `targetCountry` (type: `string`):

Ask Google to answer as if searching from this country. Leave on "Global (no country filter)" for worldwide results.

## `strictCountry` (type: `boolean`):

Restrict results to pages Google attributes to the target country (cr=countryXX), instead of only preferring them. Much tighter targeting, noticeably fewer results.

## `searchLanguage` (type: `string`):

Restrict results to one language. Leave on "Any language" for no filter.

## `timeRange` (type: `string`):

Only return pages Google indexed within this window. Recent pages are more likely to hold a mailbox that still works.

## `customDateFrom` (type: `string`):

Only used when Time Range is "Custom range". Format: YYYY-MM-DD.

## `customDateTo` (type: `string`):

Only used when Time Range is "Custom range". Format: YYYY-MM-DD.

## Actor input object example

```json
{
  "scrapeMode": "Find New Emails",
  "keywords": [
    "restaurant",
    "catering"
  ],
  "location": "",
  "customDomains": [
    "@gmail.com",
    "@yahoo.com"
  ],
  "emailList": [],
  "maxEmails": 20,
  "verificationMode": "Quick Check",
  "minQualityScore": 0,
  "excludeCatchAll": false,
  "requireMxValid": false,
  "targetCountry": "Global (no country filter)",
  "strictCountry": false,
  "searchLanguage": "",
  "timeRange": "Any time",
  "customDateFrom": "",
  "customDateTo": ""
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "keywords": [
        "restaurant",
        "catering"
    ],
    "location": "",
    "customDomains": [
        "@gmail.com",
        "@yahoo.com"
    ],
    "emailList": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("code-beat/uber-eats-email-scraper-ultra-fast-and-precise").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "keywords": [
        "restaurant",
        "catering",
    ],
    "location": "",
    "customDomains": [
        "@gmail.com",
        "@yahoo.com",
    ],
    "emailList": [],
}

# Run the Actor and wait for it to finish
run = client.actor("code-beat/uber-eats-email-scraper-ultra-fast-and-precise").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keywords": [
    "restaurant",
    "catering"
  ],
  "location": "",
  "customDomains": [
    "@gmail.com",
    "@yahoo.com"
  ],
  "emailList": []
}' |
apify call code-beat/uber-eats-email-scraper-ultra-fast-and-precise --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,code-beat/uber-eats-email-scraper-ultra-fast-and-precise"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/d1DjB7w9GEjJPeAdi/builds/R5MF52BCbEcAMM83j/openapi.json
