Reddit Email Scraper avatar

Reddit Email Scraper

Pricing

from $2.49 / 1,000 results

Go to Apify Store
Reddit Email Scraper

Reddit Email Scraper

Reddit Email Scraper SD - Reddit Email Scraper is a lead generation tool that extracts leads with public contact emails, account names and profile URLs from Reddit results by keyword, location and email domain - Reddit email extractor.

Pricing

from $2.49 / 1,000 results

Rating

0.0

(0)

Developer

Leads Scraper

Leads Scraper

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 hours ago

Last modified

Categories

Share

Reddit Email Scraper

The Reddit Email Scraper is an Apify Actor that collects publicly indexed contact emails from Reddit threads, comments and profiles. Give it keywords, get back a structured dataset of leads.

Reddit is where people post "for hire", "hiring", "DM me" and "email me at ...". Those addresses sit in threads that Google has indexed, and this Reddit Email Scraper finds and extracts them.

Important, read this first: most Reddit results are threads rather than profiles, so rows are often labelled with a subreddit instead of a user handle. You will frequently see accountName values like r/forhire with an empty username. That is normal Reddit behaviour, not a bug.

Reddit does not publish account emails. Every address the Reddit Email Scraper returns is one a person typed into a public post, comment or profile description themselves.

If you have ever hand-typed site:reddit.com "for hire" "@gmail.com" into Google, the Reddit Email Scraper is that workflow automated, expanded across dozens of phrasings, deduplicated and exported.

The Reddit Email Scraper never logs in, never opens reddit.com, and never uses Reddit's API. All data comes from publicly indexed Google search results.


Key Features of the Reddit Email Scraper

FeatureWhat it means in practice
Google-powered data collectionQueries use the site:reddit.com operator, fetched through the Apify GOOGLE_SERP proxy
Query expansionEach keyword x email-domain pair is searched as a base query, a quoted phrase, an intitle: query, and one variant per modifier
Reddit-tuned modifiersDefaults are email me, contact, dm me, hiring, for hire — the phrasings Redditors actually use
Domain filteringOnly emails on the domains you list are kept
Global deduplicationOne row per unique address across every query and page
Obfuscation handlingParses name [at] domain [dot] com, name (at) domain, name @ domain.com, zero-width characters and the full-width
Junk filterRejects placeholders such as email@, yourname@, test@, xxx@ and single-character locals
Boundary-correct matching@gmail.com does not match inside @gmail.company or @gmail.com.br
Subreddit label handlingAn r/subreddit label is resolved to its canonical subreddit URL; a u/handle label resolves to a user profile URL
Structural parserLocates each result's <h3> and the smallest surrounding block instead of relying on Google's CSS class names
Fallback parserA markup change degrades to "emails without account details" rather than zero results
Concurrency controlAn asyncio worker pool runs queries in parallel with a shared stop signal
Retry logicUp to 3 attempts per page, exponential backoff, fresh proxy session per request
Block detectionCAPTCHA, "unusual traffic" and consent pages are detected and retried, not treated as empty
Blocked-query requeueFailed queries are retried once more at the end of the run
Resumable stateInput-keyed checkpoints in the key-value store, saved on PERSIST_STATE, MIGRATING and ABORTING
Streaming outputEvery lead is pushed to the dataset immediately
Run summaryPages fetched, blocked pages, retries and emails per page are logged

Reddit's index is enormous and noisy, which is why the junk filter and the deduplication step carry so much weight in the Reddit Email Scraper.

Without them, a broad crawl of Reddit threads would return the same address dozens of times alongside a pile of template placeholders.


How the Reddit Email Scraper Works

The Reddit Email Scraper is a search-engine crawler, not a Reddit client.

  1. Read input. Keywords, location, email domains, caps and concurrency.
  2. Build queries. site:reddit.com plus your keyword, the quoted email domain, and any location phrase.
  3. Fetch search results. Asynchronous aiohttp requests through the Apify GOOGLE_SERP proxy.
  4. Parse structurally. Each result block is located from its <h3> title outward.
  5. Extract emails. A domain-filtered regex runs over the block text, with normalisation and the junk filter applied.
  6. Deduplicate and push. New addresses go into a global set and straight to the Apify dataset.

Base queries run before expanded variants, so the strongest matches land in the dataset first.

Pagination continues per query until the page cap, the email cap, or a run of pages producing nothing new. That stop rule keeps the Reddit Email Scraper from burning compute on exhausted queries.


What Data Does It Extract?

Each row the Reddit Email Scraper writes is one email address plus the account context Google printed beside it.

For thread results, that context is usually a subreddit label such as r/forhire, resolved to a subreddit URL, with the post title and snippet attached.

For profile-shaped results, you get a u/handle, a display name where one is parsed, and a https://www.reddit.com/user/{username}/ profile URL.

Every row carries provenance too: the keyword that produced it and the exact Google query used, which makes segmentation and attribution simple.

This structured-data design is what separates the Reddit Email Scraper from a raw email list: you always know where a lead came from.


Input Fields

FieldTypeDefaultDescription
keywordsarray (required)["founder", "freelancer"]Search terms describing the Reddit users or threads you want
locationstring""Optional location phrase added to every query
customDomainsarray["@gmail.com", "@yahoo.com"]Only emails on these domains are kept; leading @ optional
maxEmailsinteger (1-10000)20Stop once this many unique emails are collected
countryCodestring""Two-letter country code for the search proxy (US, GB, DE...)
expandQueriesbooleantrueSearch each keyword x domain pair in several phrasings
queryModifiersarray["email me", "contact", "dm me", "hiring", "for hire"]Extra words combined with each keyword when expansion is on
maxPagesPerQueryinteger (1-50)30Page cap per query
maxConcurrencyinteger (1-20)5How many queries run in parallel

The Reddit-specific modifiers matter. for hire and hiring map directly onto the subreddits where people publish contact addresses on purpose.

All input to the Reddit Email Scraper can be set in the Apify Console form or passed as JSON through the API.


Output Schema

Every dataset item produced by the Reddit Email Scraper contains all fourteen fields below.

FieldMeaning
networkPlatform name
keywordThe keyword that produced the lead
queryThe exact Google query used
titleRaw result title
accountNameAccount label Google prints — on Reddit this is often a subreddit such as r/forhire
fullNameDisplay name parsed from a profile-style title; empty for post titles
usernameURL-safe handle when Reddit exposes one; otherwise null
profileUrlhttps://www.reddit.com/user/{username}/ for a user, or the subreddit URL for an r/ label
urlDirect Reddit link when exposed, else the profile URL
descriptionPost or bio snippet, cleaned of labels and engagement counters
emailLower-cased email address
emailDomainThe matched domain, e.g. @gmail.com
possiblyTruncatedtrue when Google's snippet ellipsis touched the email
foundAtISO 8601 UTC timestamp

Export the Reddit Email Scraper dataset as JSON, CSV, Excel, XML or HTML, or read it over the Apify API.

The output schema is identical on every run, so downstream ingestion into a CRM stays predictable.


Example Input and Output

A realistic Reddit Email Scraper configuration for sourcing freelancers.

Input

{
"keywords": ["freelance developer", "video editor", "SaaS founder"],
"location": "",
"customDomains": ["@gmail.com", "@proton.me"],
"maxEmails": 300,
"countryCode": "US",
"expandQueries": true,
"queryModifiers": ["email me", "contact", "dm me", "hiring", "for hire"],
"maxPagesPerQuery": 30,
"maxConcurrency": 6
}

Output

Two rows, showing the two shapes you will actually see. The first is a thread labelled with a subreddit; the second is a profile-shaped result.

[
{
"network": "Reddit",
"keyword": "video editor",
"query": "site:reddit.com video editor \"@gmail.com\" for hire",
"title": "[For Hire] Video editor, 4 yrs experience, fast turnaround : r/forhire",
"accountName": "r/forhire",
"fullName": "",
"username": null,
"profileUrl": "https://www.reddit.com/r/forhire/",
"url": "https://www.reddit.com/r/forhire/",
"description": "4 years editing YouTube long-form and Shorts. Portfolio on request. Reach me at dan.edits.work@gmail.com",
"email": "dan.edits.work@gmail.com",
"emailDomain": "@gmail.com",
"possiblyTruncated": false,
"foundAt": "2026-08-31T11:03:18Z"
},
{
"network": "Reddit",
"keyword": "SaaS founder",
"query": "site:reddit.com SaaS founder \"@gmail.com\" contact",
"title": "Priya Raman (u/priya_builds) - Reddit",
"accountName": "u/priya_builds",
"fullName": "Priya Raman",
"username": "priya_builds",
"profileUrl": "https://www.reddit.com/user/priya_builds/",
"url": "https://www.reddit.com/user/priya_builds/",
"description": "Building a analytics SaaS in public. Partnerships: priya.builds@gmail.com",
"email": "priya.builds@gmail.com",
"emailDomain": "@gmail.com",
"possiblyTruncated": false,
"foundAt": "2026-08-31T11:04:55Z"
}
]

How to Use the Reddit Email Scraper

  1. Open the Reddit Email Scraper on Apify and click Try for free.
  2. Replace the default keywords with your target roles or niches, for example logo designer, bookkeeper, Shopify developer.
  3. Keep or edit queryModifiers. for hire and email me are the highest-yield phrases on Reddit.
  4. Set customDomains to the providers your audience actually uses.
  5. Set maxEmails for the list size you need.
  6. Run it, then export the dataset as CSV or read it over the Apify API.

Tip: think in subreddit language. r/forhire posts say "for hire", not "freelance services", so match the vocabulary the community uses.

Tip: because thread rows dominate, sort your export by username to separate the profile-level leads from the thread-level ones.

Tip: run the Reddit Email Scraper with narrow, role-specific keywords. Broad terms like marketing return threads that mention an address without belonging to the person you want.


Use Cases

Use caseHow the Reddit Email Scraper helps
Freelancer sourcingCollect contact addresses from for hire posts across niche subreddits
RecruitingFind candidates who published an email while job hunting
Community-led lead generationReach people actively discussing the problem your product solves
Founder and indie-hacker outreachContact builders posting in startup and SaaS communities
Beta tester recruitmentFind users volunteering to test tools in your category
Agency prospectingIdentify businesses asking for help publicly
Customer researchReach people with lived experience of a specific pain point
Partnership developmentContact moderators and organisers who list a business address
CRM enrichmentAttach a contact channel to Reddit handles you already track
Market and sentiment researchMap which subreddits generate contact-shaped conversations in your vertical

Why Use This Reddit Email Scraper

Reddit search itself will not give you contact details, and manual Google dorking stops working fast. Google caps a single query at roughly 300 results.

Query expansion is the workaround, and the Reddit Email Scraper does it systematically: base, quoted, intitle: and one variant per modifier, across every keyword and domain pair.

Extraction inside the Reddit Email Scraper is stricter than a plain regex. Obfuscated addresses are normalised, placeholders like test@gmail.com are rejected, and soft-wrapped fragments are collapsed.

Leads stream into the dataset as they are found, so an aborted Reddit Email Scraper run still leaves usable data, and resumable state means a restart continues where it stopped.

Reddit users are usually active elsewhere too. Pair this with the X Email Scraper and the Discord Email Scraper to reach the same community-native audience on other networks.

For long-form writers and technical experts, the Medium Email Scraper and Quora Email Scraper cover overlapping ground.

Recruiting rather than marketing? The LinkedIn Email Scraper complements Reddit sourcing well.


Limitations

  • Thread rows, not profile rows. Most Reddit results are threads rather than profiles, so rows are often labelled with a subreddit instead of a user handle, and username is frequently null.
  • Publicly indexed emails only. Reddit does not expose account emails. The Reddit Email Scraper only finds addresses a person published in public text that Google indexed.
  • Google's result cap. A single query returns roughly 300 results maximum. Query expansion mitigates this but does not remove it.
  • possiblyTruncated. true means Google's snippet ellipsis touched the address. Verify those rows before sending.
  • Apify GOOGLE_SERP proxy required. The Actor cannot run without Apify proxy credentials.
  • Free-plan cap. Free Apify plans are limited to 100 emails per run. Paid plans are uncapped.
  • Handle availability. username and profileUrl populate only when Google exposes a handle. Rows may carry accountName and fullName with an empty username. That is a Google limitation, not a bug.
  • Variable yield. Results depend on keywords, domains and location. No volume is guaranteed.

The same engine behind the Reddit Email Scraper ships for every major network.

ActorWhat it collects
Reddit Email and Phone Number ScraperEmails and phone numbers from Reddit
Reddit Phone Number ScraperPublic phone numbers from Reddit
Behance Email ScraperPublic contact emails from Behance
Bigo Live Email ScraperPublic contact emails from Bigo Live
Bluesky Email ScraperPublic contact emails from Bluesky
Bumble Email ScraperPublic contact emails from Bumble
Clubhouse Email ScraperPublic contact emails from Clubhouse
Dailymotion Email ScraperPublic contact emails from Dailymotion
DeviantArt Email ScraperPublic contact emails from DeviantArt
Discord Email ScraperPublic contact emails from Discord
Dribbble Email ScraperPublic contact emails from Dribbble
Facebook Email ScraperPublic contact emails from Facebook
Goodreads Email ScraperPublic contact emails from Goodreads
Hinge Email ScraperPublic contact emails from Hinge
Instagram Email ScraperPublic contact emails from Instagram
KakaoTalk Email ScraperPublic contact emails from KakaoTalk
Kick Email ScraperPublic contact emails from Kick
Lemon8 Email ScraperPublic contact emails from Lemon8
Likee Email ScraperPublic contact emails from Likee
LINE Email ScraperPublic contact emails from LINE
LinkedIn Email ScraperPublic contact emails from LinkedIn
Mastodon Email ScraperPublic contact emails from Mastodon
Medium Email ScraperPublic contact emails from Medium
Mixcloud Email ScraperPublic contact emails from Mixcloud
Patreon Email ScraperPublic contact emails from Patreon
Pinterest Email ScraperPublic contact emails from Pinterest
Quora Email ScraperPublic contact emails from Quora
Rumble Email ScraperPublic contact emails from Rumble
Snapchat Email ScraperPublic contact emails from Snapchat
SoundCloud Email ScraperPublic contact emails from SoundCloud
Substack Email ScraperPublic contact emails from Substack
Telegram Email ScraperPublic contact emails from Telegram
Threads Email ScraperPublic contact emails from Threads
TikTok Email ScraperPublic contact emails from TikTok
Tinder Email ScraperPublic contact emails from Tinder
Tumblr Email ScraperPublic contact emails from Tumblr
Twitch Email ScraperPublic contact emails from Twitch
Vimeo Email ScraperPublic contact emails from Vimeo
VK Email ScraperPublic contact emails from VK
WeChat Email ScraperPublic contact emails from WeChat
Weibo Email ScraperPublic contact emails from Weibo
X Email ScraperPublic contact emails from X

FAQ

What is the Reddit Email Scraper? An Apify Actor that collects publicly indexed contact emails from Reddit-related Google search results and returns them as structured data.

Can the Reddit Email Scraper find a Reddit user's account email? No. Reddit does not publish account emails and this Actor has no access to them. It only finds addresses people typed into public posts, comments or profile text.

Why do so many rows show a subreddit instead of a username? Most Reddit results are threads rather than profiles, so rows are often labelled with a subreddit such as r/forhire. That is expected on Reddit.

Does the Reddit Email Scraper log into Reddit or use Reddit's API? No. No login, no cookies, no browser, no API. Everything comes from public Google search results.

Do I need a proxy to run the Reddit Email Scraper? Yes. It requires the Apify GOOGLE_SERP proxy and cannot run without Apify proxy credentials.

Can I filter by email domain? Yes, via customDomains. Matching is boundary-correct, so @gmail.com never matches @gmail.company.

How many emails can one Reddit Email Scraper run return? Free Apify plans are capped at 100 emails per run. Paid plans are uncapped, bounded by maxEmails and by how much Google has indexed.

What does possiblyTruncated: true mean? Google's snippet ellipsis touched the address, so it may be cut off. Verify those rows before adding them to a campaign.

Are the emails verified or deliverable? No. The Reddit Email Scraper extracts addresses exactly as published. Verify deliverability yourself.

Which query modifiers work best in the Reddit Email Scraper? for hire and email me typically outperform generic terms, because those are the phrases Redditors write next to a contact address.

Should I leave query expansion on? Yes. Google caps a single query at roughly 300 results, and expansion is how the Reddit Email Scraper reaches beyond that ceiling.

Can I resume an interrupted Reddit Email Scraper run? Yes. Progress is checkpointed in the key-value store, keyed by an input hash, and restored on restart or migration.


Support

Questions, a bug, or need a custom build of the Reddit Email Scraper? Email neurodata.apify@gmail.com.