Verified Leads by CMM avatar
Verified Leads by CMM

Pricing

$10.00 / 1,000 results

Go to Store
Verified Leads by CMM

Verified Leads by CMM

Developed by

CMM

CMM

Maintained by Community

Get leads from Outscraper. You have the option to verify them with Million Verifier, and include Catch_All emails as well

0.0 (0)

Pricing

$10.00 / 1,000 results

0

Total users

2

Monthly users

2

Runs succeeded

>99%

Last modified

a month ago

Verified Leads from CMM

This Apify actor searches for business leads using the Outscraper Google Maps API, extracts contact and enrichment information, and (optionally) verifies emails using the MillionVerifier API. The output is a structured list of leads with rich metadata and email verification status.

When possible, we have identified the contact first name, last name, and job title. Additionally, we have included socials like Linkedin, Facebook, and Instagram.
The MillionVerifier Output field will show you whether the email is valid or catch_all.
If you are not concerned with email validation - exclude Million Verifier to return all emails.


Features

  • Google Maps Search via Outscraper: Find businesses by query and region.
  • Email Extraction: Extracts emails from both email_1 and emails array fields.
  • Email Verification (Optional): Uses MillionVerifier to check if emails are valid, good, or catch-all.
  • Flexible Filtering: Optionally include catch-all emails.
  • Rich Output: Includes business info, contact details, social links, and verification results.
  • Domain Extraction: Extracts domain from website if available.

Input

Provide a JSON object with the following fields:

FieldTypeRequiredDescription
querystringYesWhat you want to search for (e.g. "marketing agencies").
limitintegerNoMax number of leads to fetch (default: 500).
regionstringNoRegion to search in (e.g. "United States").
outscraper_api_keystringYesYour Outscraper API key.
million_verifier_api_keystringCond.Your MillionVerifier API key (required if using email verification).
useMillionVerifierbooleanNoWhether to verify emails using MillionVerifier (default: false).
includeCatchAllbooleanNoWhether to include catch-all emails (default: false).

Example input:

{
"query": "law firms in Texas",
"limit": 100,
"region": "United States",
"outscraper_api_key": "YOUR_OUTSCRAPER_KEY",
"million_verifier_api_key": "YOUR_MV_KEY",
"useMillionVerifier": true,
"includeCatchAll": false
}

Output

Each output lead will include the following fields (if available):

  • name
  • name_for_emails
  • full_address
  • street
  • postal_code
  • country_code
  • city
  • state
  • phone
  • type
  • logo
  • email
  • email_1_first_name
  • email_1_last_name
  • email_1_title
  • facebook
  • instagram
  • linkedin
  • site
  • million_verifier_result (e.g. "ok", "good", "catch_all", "error", etc.)
  • domainInfo (object with domain field, if website is available)

How It Works

  1. Searches Google Maps using Outscraper for your query and region.
  2. Extracts leads and their emails.
  3. (Optional) Verifies emails using MillionVerifier.
    • Only includes emails with result "ok" or "good".
    • If includeCatchAll is true, also includes "catch_all" results.
  4. Outputs a JSON array of leads with all requested fields.

Notes

  • You must have valid API keys for both Outscraper and MillionVerifier (if using email verification).
  • If you do not enable MillionVerifier, all found emails are included.
  • The actor will log excluded emails and the reason for exclusion.

Example Output

{
"name": "Example Law Firm",
"name_for_emails": "John Doe",
"full_address": "123 Main St, Dallas, TX",
"street": "123 Main St",
"postal_code": "75201",
"country_code": "US",
"city": "Dallas",
"state": "TX",
"phone": "+1 555-123-4567",
"type": "Law Firm",
"logo": "https://example.com/logo.png",
"email": "info@examplelaw.com",
"email_1_first_name": "John",
"email_1_last_name": "Doe",
"email_1_title": "Attorney",
"facebook": "https://facebook.com/examplelaw",
"instagram": "https://instagram.com/examplelaw",
"linkedin": "https://linkedin.com/company/examplelaw",
"site": "https://examplelaw.com",
"million_verifier_result": "ok",
"domainInfo": { "domain": "examplelaw.com" }
}

Troubleshooting

  • If you see Excluding ... due to MillionVerifier result: ... in logs, that email did not pass the verification filter.
  • If you get a 404 or error from MillionVerifier, check your API key and endpoint.
  • If you get no results, try a broader query or check your API quotas.