VOOZH about

URL: https://apify.com/automation-lab/dealabs-scraper

โ‡ฑ Dealabs Scraper: Extract Deals, Prices, Coupons ยท Apify


Pricing

Pay per event

Go to Apify Store

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

๐Ÿ‘ Stas Persiianenko

Stas Persiianenko

Maintained by Community

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.

FieldDescription
idDealabs thread id when available.
titleDeal title.
priceCurrent deal price.
oldPricePrevious or next best price when available.
discountPercentageDiscount percentage reported by Dealabs.
merchantMerchant or host name.
temperatureCommunity deal temperature.
commentCountNumber of comments.
couponCodeVoucher code when present.
categoryDealabs category.
authorDeal author username.
postedAtPublication timestamp.
imageUrlMain image URL.
dealUrlDealabs deal URL.
outboundUrlOutbound/visit URL when available.
sourceUrlListing 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

  1. Open the actor on Apify.
  2. Add Dealabs category URLs or search terms.
  3. Set maxItems.
  4. Keep includeDetails off for fast monitoring.
  5. Run the actor.
  6. 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-tech
  • https://www.dealabs.com/groupe/gratuit
  • https://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 temperature to find unusually hot deals.
  • Filter by commentCount to 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 ApifyClient
client = 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().items
print(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:

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.

You might also like

Dealabs Deals Scraper

automation-lab/dealabs-deals-scraper

Scrape public Dealabs deals for French ecommerce monitoring: prices, merchants, temperatures, comments, categories, images, and URLs.

๐Ÿ‘ User avatar

Stas Persiianenko

2

Dealabs Scraper

lexis-solutions/dealabs-scraper

Scrape Dealabs deals at scale from search, hot, trending, and category pages, capturing prices, discounts, ratings, comments, and voucher codes with powerful filters, pagination, and proxy support for reliable data.

๐Ÿ‘ User avatar

Lexis Solutions

6

Pepper Network Deals Scraper

automation-lab/pepper-network-deals-scraper

Scrape Dealabs, HotUKDeals, MyDealz, Pepper.pl, and Pepper NL deals with normalized prices, merchants, temperatures, comments, and URLs.

๐Ÿ‘ User avatar

Stas Persiianenko

2

Dealabs Scraper

saswave/dealabs-scraper

High-precision data extraction tool designed for dealabs.com, France largest social shopping community. It allows you to monitor the latest bargains, track price errors, and analyze consumer trends by capturing the full technical metadata of deals, vouchers, and discussions.

Hot UK Deals Scraper

automation-lab/hot-uk-deals-scraper

๐Ÿ›๏ธ Scrape HotUKDeals search and listing pages for prices, merchants, temperatures, comments, vouchers, categories, and deal URLs.

๐Ÿ‘ User avatar

Stas Persiianenko

2

HotUKDeals Deals Scraper

automation-lab/hotukdeals-deals-scraper

๐Ÿ›’ Scrape public HotUKDeals deals with prices, merchants, temperatures, comments, categories, voucher codes, and deal URLs.

๐Ÿ‘ User avatar

Stas Persiianenko

2

MyDealz Deals Scraper

automation-lab/mydealz-deals-scraper

Scrape public MyDealz deals, vouchers, prices, merchants, categories, temperatures, comments, and timestamps for German ecommerce monitoring.

๐Ÿ‘ User avatar

Stas Persiianenko

2

Amazon Todays Deals Scraper

scrapebase/amazon-todays-deals-scraper

๐Ÿ›๏ธ Amazon Today's Deals Scraper extracts live deals, prices, discounts, coupons & Lightning/Prime deals โ€” with titles, ASINs, ratings, availability, categories, links & images. ๐Ÿ“Š Export CSV/JSON, schedule & monitor for price tracking, eโ€‘commerce research, and affiliate SEO. ๐Ÿš€

Pepper.com Network Scraper

crawlerbros/pepper-dot-com-scraper

Scrape the Pepper.com deal community network across multiple European locales - Germany (mydealz.de), France (dealabs.com), Spain, Netherlands, Poland, and more. Extract hot deals, new listings, search results, and category deals.

Google Shopping Scraper โ€” Product Prices & Merchants

automation-lab/google-shopping-scraper

Compare product prices across merchants on Google Shopping: titles, prices, numeric price, merchants, ratings, delivery info, product URLs, country/language targeting, and exports.

๐Ÿ‘ User avatar

Stas Persiianenko

173