Pricing
Pay per event
Dealabs Scraper
Scrape Dealabs deals, prices, merchants, temperatures, coupons, comments, categories, authors, images, and outbound URLs from public pages.
Pricing
Pay per event
Rating
0.0
(0)
Developer
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Extract public deal data from Dealabs category, search, and listing pages.
What does Dealabs Scraper do?
Dealabs Scraper collects structured French deal marketplace data from public Dealabs pages.
It turns deal cards into clean dataset rows with prices, merchants, temperatures, comments, coupon codes, categories, authors, images, and URLs.
Use it when you need repeatable deal monitoring instead of manually checking Dealabs throughout the day.
Who is it for?
Dealabs Scraper is built for teams that follow French ecommerce promotions.
- ๐ Ecommerce sellers tracking competitor discounts.
- ๐ค Affiliate publishers looking for trending deals to feature.
- ๐ Pricing teams monitoring merchant price drops and old prices.
- ๐ฅ Deal hunters watching hot temperatures and comment velocity.
- ๐งพ Coupon analysts collecting voucher codes and merchant mentions.
- ๐งช Data teams feeding deal intelligence into BI, alerts, or notebooks.
Why use this Dealabs extractor?
Dealabs has high-signal community metadata that is useful for market monitoring.
This actor extracts those signals in a repeatable format.
- โ Public category and search pages.
- โ No account required for listing data.
- โ Search terms and category URLs in one run.
- โ Pagination support.
- โ Optional detail enrichment.
- โ Pay per saved deal.
What Dealabs data can I extract?
The default dataset contains one row per deal.
| Field | Description |
|---|---|
id | Dealabs thread id when available. |
title | Deal title. |
price | Current deal price. |
oldPrice | Previous or next best price when available. |
discountPercentage | Discount percentage reported by Dealabs. |
merchant | Merchant or host name. |
temperature | Community deal temperature. |
commentCount | Number of comments. |
couponCode | Voucher code when present. |
category | Dealabs category. |
author | Deal author username. |
postedAt | Publication timestamp. |
imageUrl | Main image URL. |
dealUrl | Dealabs deal URL. |
outboundUrl | Outbound/visit URL when available. |
sourceUrl | Listing or search URL where the deal was found. |
How much does it cost to scrape Dealabs deals?
This actor uses pay-per-event pricing.
You pay a small run start fee and then a per-deal charge for each saved dataset item.
Use lower maxItems values for cheap tests.
Increase maxPagesPerSource only when you need deeper history.
Quick start
- Open the actor on Apify.
- Add Dealabs category URLs or search terms.
- Set
maxItems. - Keep
includeDetailsoff for fast monitoring. - Run the actor.
- Export JSON, CSV, Excel, or connect the dataset to your workflow.
Input options
Start URLs
Use public Dealabs URLs such as:
https://www.dealabs.com/groupe/high-techhttps://www.dealabs.com/groupe/gratuithttps://www.dealabs.com/search?q=iphone
Category URLs
Add category pages when you want one source per Dealabs category.
Search terms
Search terms are converted to Dealabs search URLs.
For example, iphone becomes a Dealabs search page for iPhone deals.
Maximum deals
maxItems controls total output size across all sources.
Maximum pages per source
maxPagesPerSource controls pagination depth.
One page usually includes about 30 deal cards.
Include detail enrichment
Turn on includeDetails to open each deal page and try to fill description and outbound visit URLs.
Leave it off for fast recurring monitoring.
Example input
{"startUrls":[{"url":"https://www.dealabs.com/groupe/high-tech"}],"searchTerms":["iphone","amazon"],"maxItems":100,"maxPagesPerSource":4,"includeDetails":false}
Example output
{"id":"3350035","title":"VPN intรฉgrรฉ Firefox avec bande passante illimitรฉe...","price":0,"oldPrice":0,"merchant":"blog.mozilla.org","temperature":11333.7,"commentCount":392,"category":"High-Tech","author":"Bye67","dealUrl":"https://www.dealabs.com/bons-plans/...","sourceUrl":"https://www.dealabs.com/groupe/high-tech","scrapedAt":"2026-06-24T02:27:04.422Z"}
Tips for better Dealabs monitoring
- Use search terms for brands, products, and merchants.
- Use category URLs for broader market surveillance.
- Keep detail enrichment disabled for high-volume monitoring.
- Run on a schedule for recurring alerts.
- Filter by
temperatureto find unusually hot deals. - Filter by
commentCountto identify active discussions.
Integrations
You can connect Dealabs Scraper to many workflows.
- ๐ Send datasets to Google Sheets for deal tracking.
- ๐ Trigger Make or Zapier alerts for hot deal thresholds.
- ๐งฎ Load results into BigQuery, Snowflake, or a warehouse.
- ๐ฐ Feed affiliate publishing queues with fresh French deals.
- ๐๏ธ Compare merchant promotions with your ecommerce catalog.
- ๐ฆ Archive daily snapshots for price intelligence.
API usage with Node.js
import{ ApifyClient }from'apify-client';const client =newApifyClient({token: process.env.APIFY_TOKEN});const run =await client.actor('automation-lab/dealabs-scraper').call({searchTerms:['iphone'],maxItems:50,});const{ items }=await client.dataset(run.defaultDatasetId).listItems();console.log(items);
API usage with Python
from apify_client import ApifyClientclient = ApifyClient('YOUR_APIFY_TOKEN')run = client.actor('automation-lab/dealabs-scraper').call(run_input={'searchTerms':['iphone'],'maxItems':50,})items = client.dataset(run['defaultDatasetId']).list_items().itemsprint(items)
API usage with cURL
curl-X POST 'https://api.apify.com/v2/acts/automation-lab~dealabs-scraper/runs?token=YOUR_APIFY_TOKEN'\-H'Content-Type: application/json'\-d'{"searchTerms":["iphone"],"maxItems":50}'
MCP integration
Use Dealabs Scraper from Claude Desktop, Claude Code, or other MCP clients through Apify MCP.
MCP URL:
https://mcp.apify.com/?tools=automation-lab/dealabs-scraper
Claude Code setup:
$claude mcp add apify-dealabs "https://mcp.apify.com/?tools=automation-lab/dealabs-scraper"
Claude Desktop JSON config:
{"mcpServers":{"apify-dealabs":{"url":"https://mcp.apify.com/?tools=automation-lab/dealabs-scraper"}}}
Example prompts:
- "Scrape the Dealabs High-Tech category and summarize the hottest deals."
- "Find current Dealabs iPhone offers and return merchants with temperatures."
- "Monitor Dealabs for Amazon coupon codes and export results as CSV."
Scheduling
Dealabs Scraper works well as a scheduled actor.
Set a schedule such as hourly, twice daily, or daily depending on your monitoring needs.
Use smaller maxItems values for frequent schedules.
Use larger values for daily archive jobs.
Data quality notes
Dealabs listing pages include many key fields in embedded page data.
Some optional fields may be null when Dealabs does not publish them on a listing card.
Examples include coupon code, merchant URL, or outbound URL.
Turn on detail enrichment if you need more page-level data.
FAQ
Is Dealabs Scraper a Dealabs API?
No. It extracts structured data from public Dealabs pages and stores it in an Apify dataset.
Can I scrape Dealabs search results?
Yes. Add search terms such as product names, brands, merchants, or coupon phrases.
Troubleshooting
Why are some prices zero?
Some Dealabs posts are freebies, discussions, or non-standard deals. Dealabs may publish price as 0.
Why is outboundUrl empty?
Listing cards often include Dealabs metadata but not the final merchant visit link. Enable includeDetails to try detail page enrichment.
Why did I get fewer deals than expected?
The actor deduplicates deals across pages and sources. Increase maxPagesPerSource or add more sources.
Legality
This actor extracts publicly available Dealabs pages.
You are responsible for using the data in a lawful way and respecting Dealabs terms, privacy rules, and applicable regulations.
Do not scrape personal data unless you have a lawful basis.
Related scrapers
Explore related Automation Lab actors:
- https://apify.com/automation-lab/amazon-search-scraper
- https://apify.com/automation-lab/ebay-scraper
- https://apify.com/automation-lab/google-shopping-scraper
- https://apify.com/automation-lab/website-contact-finder
Changelog
0.1
Initial private build with category URL, search term, pagination, Dealabs deal extraction, and optional detail enrichment.
Support
If you need a field that is visible on Dealabs but missing from the output, open an issue on the Apify actor page.
Include the Dealabs URL and a sample expected field.
