Yellow Pages Australia Scraper
Pricing
from $0.01 / 1,000 results
Go to Apify Store

Yellow Pages Australia Scraper
Extract business listings from Yellow Pages Australia, including company website, email, phone, address, suburb, city and industry. Ideal for lead generation, market research and building targeted business databases.
Pricing
from $0.01 / 1,000 results
Rating
0.0
(0)
Developer

Trent
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
0
Monthly active users
2 days ago
Last modified
Categories
Share
Yellow Pages Australia Scraper (Apify Actor)
Scrapes business listings from Yellow Pages Australia by search query and location. Built for the Apify platform.
Input
| Field | Type | Required | Description |
|---|---|---|---|
| what | string | Yes | Business type or keyword (e.g. plumber, electrician) |
| where | string | Yes | Location (e.g. Sydney NSW or suburb/postcode) |
| maxResults | integer | No | Max listings to scrape (1–10,000, default: 100) |
| maxPages | integer | No | Max search pages to load (optional cap) |
| proxyConfiguration | object | No | Apify Proxy or custom proxies (recommended for production) |
Output
Each dataset item is one business with:
BusinessName– Company nameCompanyWebsite– Website URL (normalized)Email– Email if availablePhone– Phone numberAddress– Full addressCity– City (parsed)Suburb– Suburb (parsed)Industry– Category/industryListingUrl– Yellow Pages listing URL
Run locally
pip install -r requirements.txtpython -m src.main
Set input via Apify CLI or by providing input when running on the Apify platform.
Deploy to Apify
- Create a new Python actor on Apify.
- Set the start command to
src/main.py(or use default Python actor layout). - Add
requirements.txtand ensure dependencies are installed. - Connect this repo or paste the code; run and download results from the Dataset tab.
Notes
- Uses
httpx+ BeautifulSoup (no browser). - Supports pagination until
maxResultsor no more pages. - Deduplicates by business name + phone.
- Optional Apify Proxy via
Actor.create_proxy_configuration().