OrbTop

Lead Finder

LEAD GENERATION

Lead Finder

Find B2B leads by job title, location, and industry. Searches DuckDuckGo for public LinkedIn profiles matching your criteria and returns full name, job title, company, LinkedIn URL, and guessed email address. No API keys or credentials required.

What it does

For each combination of job title and location you provide, the actor searches DuckDuckGo for LinkedIn profiles matching that combination. It extracts profile details directly from the search snippets and constructs a best-guess email address based on the person's name and company domain.

Output per lead:

  • Full name (split into first/last)
  • Job title
  • Company name
  • LinkedIn profile URL
  • Guessed email address (firstname.lastname@company.com pattern)
  • Source search URL
  • Timestamp

Pricing

You are only charged for leads where an email address was successfully guessed. Leads with no guessable email are returned free.

Input

Field Type Required Description
jobTitles Array of strings Yes Job titles to search for (e.g. "CEO", "Software Engineer")
locations Array of strings Yes Cities or regions to search in (e.g. "San Francisco", "New York")
industries Array of strings No Industries to filter by (e.g. "Technology", "Finance")
maxItems Integer No Maximum leads to return (default: 100)

Example input

{
  "jobTitles": ["CEO", "CTO"],
  "locations": ["San Francisco", "New York"],
  "industries": ["Technology"],
  "maxItems": 50
}

Example output

[
  {
    "full_name": "Evan Conrad",
    "first_name": "Evan",
    "last_name": "Conrad",
    "title": "CEO",
    "company": "San Francisco Compute",
    "linkedin_url": "https://www.linkedin.com/in/evan-conrad",
    "email_guess": "evan.conrad@sanfranciscocompute.com",
    "source_url": "https://duckduckgo.com/?q=site%3Alinkedin.com%2Fin+%22CEO%22+%22San+Francisco%22",
    "scraped_at": "2026-06-02T12:06:22.453Z"
  }
]

Notes

  • Email addresses are guesses based on the most common pattern (firstname.lastname@companydomain.com) and are not verified. Use an email verification service before sending.
  • Search results come from DuckDuckGo's site:linkedin.com/in index. Coverage depends on how many LinkedIn profiles are indexed by DuckDuckGo.
  • Each (job title × location) combination generates one search query. With 2 titles and 3 locations, the actor makes 6 queries.