HotFrog Business Directory Scraper avatar

HotFrog Business Directory Scraper

Pricing

from $9.99 / 1,000 results

Go to Apify Store
HotFrog Business Directory Scraper

HotFrog Business Directory Scraper

The HotFrog Business Scraper is an Apify Actor that extracts business listings from HotFrog using keywords and locations. It collects details like names, phone numbers, addresses, descriptions, websites, and profile links, and can visit each site to gather email addresses for lead generation.

Pricing

from $9.99 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

An Apify actor that scrapes business listings from HotFrog search results by keyword and optional location. For each business it outputs:

FieldDescription
titleBusiness name
phonePhone number
addressAddress line (City, ST ...)
descriptionShort description / snippet
websiteThe business's own site from the card's call-to-action button
emailsEmails harvested from the website (only when fetchEmails is on)
profileUrlThe HotFrog company profile page
reviewUrl"Review now" link
messageUrl"Message business" link
keyword, locationEcho of the search inputs

Input

FieldTypeDefaultNotes
keywordstringRequired. e.g. plumbing
locationstring""e.g. Austin, TX. Blank = nationwide (US)
maxPagesinteger1Result pages to walk
maxRecordsinteger50Hard cap on businesses collected
fetchEmailsbooleanfalseVisit each business site to scrape emails (slower)
enginestringautoauto / curl_cffi / requests
requestDelaySecondsinteger1Politeness delay between requests
proxyConfigurationobjectApify ProxyUse RESIDENTIAL — HotFrog blocks datacenter IPs

Example input

{
"keyword": "roofing",
"location": "Austin, TX",
"maxPages": 3,
"maxRecords": 100,
"fetchEmails": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output

Every business is pushed to the actor's default dataset. Export as JSON, CSV, Excel, etc. from the run's Storage → Dataset tab, or via the API.

{
"title": "Acme Plumbing Co",
"phone": "(512) 555-1234",
"address": "123 Main St, Austin, TX 78701",
"description": "Emergency plumbing repairs, 24/7 service.",
"website": "https://www.acmeplumbing.com",
"emails": ["info@acmeplumbing.com"],
"profileUrl": "https://www.hotfrog.com/company/12345/acme-plumbing/",
"reviewUrl": "https://www.hotfrog.com/review/12345/",
"messageUrl": "https://www.hotfrog.com/message/12345/",
"keyword": "plumbing",
"location": "Austin, TX"
}