Yellow Pages Canada Business Leads Scraper
Pricing
from $17.00 / 1,000 results
Yellow Pages Canada Business Leads Scraper
Scrape Canadian business listings from Yellow Pages by keyword and city or province. Get business name, phone, website, full address and category as clean leads. Export to JSON, CSV or Excel.
Pricing
from $17.00 / 1,000 results
Rating
0.0
(0)
Developer
Scrapers Lat
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
1
Monthly active users
13 days ago
Last modified
Categories
Share
Yellow Pages Canada Business Leads Scraper
Here is one real result, with every field the actor returns:
{"businessName": "El Gourmet Express Inc","phone": "416-628-3202","email": null,"website": "https://elgourmet.ca/","address": "820 Church St, Toronto, ON M4W 2M9","street": "820 Church St","city": "Toronto","province": "ON","postalCode": "M4W 2M9","category": "Restaurants","categories": ["Restaurants"],"rating": 4.5,"reviewCount": 7,"openStatus": "Open until 9:00 pm","url": "https://www.yellowpages.ca/bus/Ontario/Toronto/El-Gourmet-Express-Inc/104582462.html?what=Restaurants&where=Toronto+ON&useContext=true","source": "YellowPages.ca","observedAt": "2026-08-10T14:28:58.851Z"}
The most complete Yellow Pages Canada scraper available. It returns every field the listing exposes for each business, plus parsed address parts (street, city, province, postalCode), ratings, and an optional paid contact-email add-on, and gives you keyword and location filters to target exactly the leads you need.
📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
What it does
The actor searches Yellow Pages Canada (yellowpages.ca) for a keyword in a city or province, paginates through the matching business listings, and writes one normalized record per business to the run's dataset. Each Canadian address is parsed into street, city, province, and postalCode, the website redirect wrapper is resolved to the real business URL, and missing values are returned as null so you never get invented data.
An optional paid add-on (enrichContacts) attempts to find a public business contact email and contact person for results that have no email. It is off by default and billed separately (see Billing and limits).
Quickstart
Open the actor, paste this into the input, and press Run. It returns the 10 first restaurant leads in Toronto.
{"maxBusinesses": 10,"keyword": "restaurant","city": "Toronto ON","enrichContacts": false,"enrichContactsMax": 50}
Both keyword and city are required. Set keyword to a category (for example dentist, plumber, lawyer) and city to a location string that includes the province code (for example Vancouver BC).
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
keyword | string | yes | restaurant | What to search for, for example restaurant, dentist, plumber, lawyer, or hair salon. |
city | string | yes | Toronto ON | Where to search, for example Toronto ON, Vancouver BC, Montreal QC, or Calgary AB. Include the two-letter province code. |
maxBusinesses | integer | no | 10 | Maximum number of businesses to collect. Free Apify plans are capped at 10 per run. |
enrichContacts | boolean | no | false | Optional paid add-on. For each result without an email, attempt to find a public business contact email and a contact person's name. Billed per attempt, plus an extra charge only when an email is found. |
enrichContactsMax | integer | no | 50 | Cap how many results the add-on tries to enrich, to control add-on cost. Free Apify accounts are capped at 3. |
Output reference
One dataset item per business. Types: string, number, string[], or null when the source value is absent.
| Field | Type | Description |
|---|---|---|
businessName | string | Business name, with the listing rank prefix stripped. |
phone | string | Business phone number, or null. |
email | string | Base email from the listing. Almost always null; use the contact enrichment add-on to find one. |
website | string | Business website, resolved from the Yellow Pages redirect wrapper, or null. |
address | string | Full single-line address as shown on the listing. |
street | string | Street part parsed from the address. |
city | string | City part parsed from the address. |
province | string | Two-letter province code parsed from the address (for example ON, BC, QC). |
postalCode | string | Canadian postal code parsed from the address. |
category | string | Primary category the business is listed under. |
categories | string[] | All categories the business is listed under, or null. |
rating | number | Star rating from 1 to 5, or null when unrated. |
reviewCount | number | Number of reviews backing the rating, or null. |
openStatus | string | Open/closed indicator shown on the card, for example Open until 9:00 pm, or null. |
url | string | Full URL of the business listing on Yellow Pages Canada. |
source | string | Data source, always YellowPages.ca. |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
enrichedEmail | string | Contact email found by the paid add-on, or null. Present only when enrichContacts is enabled. |
enrichedContactName | string | Contact person name found by the add-on, or null. |
enrichedJobTitle | string | Contact job title found by the add-on, or null. |
enrichedEmailStatus | string | Deliverability status of the enriched email, or null. |
enrichedSource | string | Source URL the enriched contact was found on, or null. |
enrichedConfidence | number | Confidence score for the enriched contact, or null. |
error | string | Present only on a failed run: a single item with a populated error field is written instead. |
The enriched* fields are added only when the enrichContacts add-on is enabled.
Example output record
Real record from a live run (input {"keyword": "restaurant", "city": "Toronto ON", "maxBusinesses": 10}):
{"businessName": "La Sala Restaurant","phone": "416-800-2993","email": null,"website": "https://www.lasalaristorante.com/","address": "1975A Queen St E, Toronto, ON M4L 1J1","street": "1975A Queen St E","city": "Toronto","province": "ON","postalCode": "M4L 1J1","category": "Restaurants","categories": ["Restaurants"],"rating": 4,"reviewCount": 2,"openStatus": "Opening at 5:00 pm","url": "https://www.yellowpages.ca/bus/Ontario/Toronto/La-Sala-Restaurant/2088985.html?what=Restaurants&where=Toronto+ON&useContext=true","source": "YellowPages.ca","observedAt": "2026-08-10T14:28:58.857Z"}
Run via API and CLI
Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.
Run synchronously and get dataset items in one call:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~yellowpages-canada-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"keyword":"restaurant","city":"Toronto ON","maxBusinesses":25}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~yellowpages-canada-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"keyword":"dentist","city":"Vancouver BC","maxBusinesses":100}'
Apify CLI:
apify call scrapers_lat/yellowpages-canada-scraper \--input '{"keyword":"plumber","city":"Calgary AB"}'
Fetch results
Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"
<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.
Billing and limits
- Pay per result. You are charged per business record returned (
resultevent). See the pricing tab for the current per-result price. - Contact enrichment add-on is billed separately: per attempt when
enrichContactsis on, plus an extra charge only when an email is found. - No charge on failure. If a run errors, the actor writes a single item with a populated
errorfield and does not charge for it. Empty runs cost nothing. - Spend cap respected. Set
maxTotalChargeUsdon the run; once reached, the actor stops emitting and charging further billable results. - Free Apify plans are capped at 10 records per run (and 3 enrichment attempts). Upgrade for higher
maxBusinesses.
FAQ and troubleshooting
A run returned only an error item. Why?
Both keyword and city are required. If either is empty the actor writes a single item with a populated error field and does not charge. Provide both and re-run.
Why is website sometimes null?
Not every listing publishes a website. When present, the actor resolves the Yellow Pages redirect link to the real business URL; when absent it returns null rather than inventing one.
Why is email null on most records?
The listing pages rarely expose an email. Enable the enrichContacts add-on to search for a public business contact email and contact person; those values are returned in the enriched* fields.
How do I target a specific province?
Put the province code in city, for example Halifax NS or Winnipeg MB. Address parsing fills province and postalCode on each record.
Is this an official Yellow Pages tool? No. This actor is independent and has no affiliation with Yellow Pages Canada. It reads only data that is publicly available on the site.
Related scrapers
- Yellow Pages New Zealand Business Leads Scraper: business leads from Yellow Pages New Zealand.
- 11880 Germany Business Scraper: German business listings and contacts.
- ACCA Accountants Scraper: ACCA-registered accountancy firm leads.
More scrapers at scrapers.lat
Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.
Independent tool, not affiliated with Yellow Pages Canada. Accesses only publicly available business listing data.

