VOOZH about

URL: https://apify.com/studio-amba/manomano-scraper

โ‡ฑ ManoMano Scraper - French DIY Marketplace Products & Prices ยท Apify


๐Ÿ‘ ManoMano Scraper โ€” French DIY & Home Improvement Marketplace avatar

ManoMano Scraper โ€” French DIY & Home Improvement Marketplace

Under maintenance

Pricing

from $5.00 / 1,000 result scrapeds

Go to Apify Store

ManoMano Scraper โ€” French DIY & Home Improvement Marketplace

Under maintenance

Scrape product listings, prices, seller information, ratings, and specifications from ManoMano.fr. Europe's leading online DIY marketplace with 10M+ products from thousands of sellers. No login required.

Pricing

from $5.00 / 1,000 result scrapeds

Rating

0.0

(0)

Developer

๐Ÿ‘ Studio Amba

Studio Amba

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

ManoMano Scraper -- French DIY & Home Improvement Marketplace

Scrape product data from ManoMano.fr -- Europe's leading online marketplace for DIY, home improvement, and garden products with over 10 million products from thousands of independent sellers. No login or cookies required.

How to scrape ManoMano data

ManoMano Scraper extracts product listings from ManoMano.fr including prices, seller information, ratings, specifications, and stock status. Search by keyword or browse categories to get structured, ready-to-use data.

What is ManoMano?

ManoMano is Europe's largest online marketplace dedicated to DIY, home improvement, and garden products. Founded in France, it operates in 6 European countries and connects millions of buyers with thousands of professional sellers. Unlike single-retailer stores, ManoMano aggregates offers from multiple merchants, making it a prime source for competitive pricing data.

Who uses this scraper:

  • Price comparison platforms -- ManoMano aggregates sellers, giving you multi-vendor pricing in one crawl. Compare offers across merchants for the same product.
  • Marketplace sellers & brands -- Monitor your product listings, track competitor pricing, and detect unauthorized sellers. Know exactly where you stand in search results.
  • E-commerce competitors -- If you sell DIY, tools, or home improvement products in France, ManoMano pricing sets market expectations. Track what customers see before they visit your store.
  • Market researchers -- Analyze the French DIY market: seller concentration, price distributions, brand representation, category trends, and promotional patterns.
  • Procurement teams -- Find the best-priced suppliers for tools, building materials, plumbing, and electrical supplies across thousands of vendors.

Search by keyword

The fastest way to find products:

{
"searchQuery":"perceuse",
"maxResults":100
}

Browse a category

Scrape an entire product category. Copy category URLs from manomano.fr navigation:

{
"categoryUrl":"https://www.manomano.fr/cat/perceuses+visseuses-12",
"maxResults":200
}

Scrape specific URLs

Pass individual product pages or listing pages directly:

{
"startUrls":[
{"url":"https://www.manomano.fr/cat/peinture-interieure-16"},
{"url":"https://www.manomano.fr/cat/robinetterie-462"}
],
"maxResults":500
}

Tip: Use French residential proxies for best results. ManoMano uses DataDome anti-bot protection that works best with French IP addresses.

What data does ManoMano Scraper extract?

FieldTypeDescription
nameStringFull product title
brandStringBrand or manufacturer name
priceNumberCurrent selling price in EUR
currencyStringAlways "EUR"
originalPriceNumberPrice before discount/promotion
sellerNameStringMarketplace seller name
sellerRatingNumberSeller's average rating
inStockBooleanProduct availability
ratingNumberAverage product rating (0-5)
reviewCountNumberNumber of customer reviews
skuStringProduct SKU or model reference
eanStringEAN barcode
imageUrlStringPrimary product image
descriptionStringProduct description
categoryStringProduct category
categoriesArrayFull breadcrumb path
specsObjectTechnical specifications (key-value pairs)

Output

A realistic ManoMano product record:

{
"name":"Bosch Professional Perceuse-visseuse sans fil GSR 18V-28",
"brand":"Bosch Professional",
"price":129.90,
"currency":"EUR",
"url":"https://www.manomano.fr/p/bosch-professional-perceuse-visseuse-gsr-18v-28-12345678",
"scrapedAt":"2026-05-19T10:30:00.000Z",
"originalPrice":159.90,
"sellerName":"Outillage Pro FR",
"sellerRating":4.7,
"inStock":true,
"rating":4.5,
"reviewCount":234,
"sku":"GSR18V28",
"ean":"3165140953092",
"imageUrl":"https://cdn.manomano.com/media/product/bosch-gsr-18v-28.jpg",
"description":"Perceuse-visseuse sans fil 18V avec mandrin auto-serrant 13mm, couple max 63Nm, eclairage LED integre.",
"category":"Perceuses-visseuses",
"categories":["Outillage","Outillage electroportatif","Perceuses-visseuses"],
"specs":{
"Tension":"18V",
"Couple max":"63 Nm",
"Mandrin":"13 mm",
"Poids":"1.6 kg"
}
}

How much does it cost?

ScenarioEstimated cost
50 products (search)~$0.15
200 products (category)~$0.50
1,000 products (multiple categories)~$2.00
Large catalog crawl~$5.00+

ManoMano is one of the most complex sites to scrape due to aggressive DataDome anti-bot protection. The scraper uses specialized infrastructure to bypass these protections and extract complete product data. Because of this complexity, scraping takes approximately 1 minute per product. Plan your runs accordingly: 100 products takes about 1.5 hours, 500 products about 8 hours. We recommend running larger extractions overnight on a schedule.

Can I integrate?

Connect ManoMano data to your tools:

  • Google Sheets -- track French DIY marketplace prices and seller offers
  • Webhooks -- trigger alerts when prices drop or new sellers appear
  • Zapier / Make -- automate competitive intelligence workflows
  • Slack -- daily notifications on price changes in your product categories
  • Amazon S3 / Google Cloud Storage -- archive pricing snapshots for trend analysis
  • PostgreSQL / MySQL -- feed marketplace data into your analytics stack

Can I use it as an API?

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("studio-amba/manomano-scraper").call(run_input={
"searchQuery":"perceuse",
"maxResults":50,
"proxyConfiguration":{
"useApifyProxy":True,
"apifyProxyGroups":["RESIDENTIAL"],
"apifyProxyCountry":"FR",
},
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
seller =f" (by {item['sellerName']})"if item.get('sellerName')else''
print(f"{item['brand']} - {item['name']} -- EUR {item['price']}{seller}")

JavaScript

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('studio-amba/manomano-scraper').call({
searchQuery:'perceuse',
maxResults:50,
proxyConfiguration:{
useApifyProxy:true,
apifyProxyGroups:['RESIDENTIAL'],
apifyProxyCountry:'FR',
},
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item=>{
const seller = item.sellerName ?` (by ${item.sellerName})`:'';
console.log(`${item.brand} - ${item.name} -- EUR ${item.price}${seller}`);
});

Input parameters

ParameterTypeDefaultDescription
searchQueryStringSearch for products by keyword (French terms recommended)
categoryUrlStringA ManoMano category page URL
startUrlsArrayList of ManoMano URLs to scrape
maxResultsInteger100Maximum number of products to return
proxyConfigurationObjectApify proxyProxy settings (FR residential recommended)

FAQ

Does this handle ManoMano's anti-bot protection? Yes. ManoMano uses DataDome anti-bot. The scraper uses browser fingerprinting and session management to work with it. For best results, use French residential proxies.

Can I get seller information? Yes. The scraper extracts sellerName and sellerRating for each product. ManoMano is a marketplace with thousands of sellers, so this data is valuable for competitive analysis.

What language is the data in? All data comes in French, matching the manomano.fr site.

How often do ManoMano prices change? ManoMano prices are set by individual sellers and can change at any time. Weekly scraping captures most pricing trends. Daily scraping catches flash sales and promotional events.

Can I scrape other ManoMano country sites? This scraper targets manomano.fr (France). ManoMano also operates in Spain, Italy, Germany, and the UK with separate sites.

Limitations

  • The scraper targets manomano.fr (France). Other ManoMano country sites have different URL structures.
  • ManoMano uses DataDome anti-bot protection. French residential proxies are recommended for reliable results.
  • Very large crawls (1000+ products) run at low concurrency to avoid detection, so they take longer.
  • Seller-specific data (seller rating, seller name) is most complete on product detail pages. Listing-page results may have partial seller info.
  • Product specifications vary by category. Some products have detailed specs, others have minimal info.

Other DIY and home improvement scrapers

Build comprehensive European DIY market intelligence:

Your feedback

Found an issue or want a new feature? Let us know through the Apify Store actor page. We fix bugs quickly and actively maintain this scraper.

You might also like

ManoMano Listings Scraper

piotrv1001/manomano-listings-scraper

The ManoMano Listings Scraper extracts product listings and detailed PDPs from ManoMano (FR/DE/ES/IT/UK), capturing titles, brands, sellers, prices, discounts, ratings, images, categories, EAN, SKU, attributes, and delivery info โ€” ideal for price tracking and e-commerce intelligence.

Wickes Scraper โ€” UK DIY & Home Improvement Products

studio-amba/wickes-scraper

Scrape products, prices, and specs from Wickes.co.uk. UK's leading DIY & home improvement retailer. Supports category browsing and search.

Bricorama Scraper โ€” French DIY & Home Improvement Products

studio-amba/bricorama-scraper

Scrape products from Bricorama.fr, the French DIY retailer with 100+ stores. Tools, paint, flooring, bathroom, kitchen, garden, and building materials.

Karwei Scraper โ€” Dutch DIY & Home Improvement Products

studio-amba/karwei-scraper

Scrape DIY & home improvement products, prices, ratings, stock status, and specs from Karwei.nl. Part of the Intergamma group with 100+ stores in the Netherlands. Supports search, category/brand filtering.

Leroy Merlin Scraper โ€” French DIY & Home Improvement

studio-amba/leroymerlin-scraper

Scrape products from LeroyMerlin.fr, France's largest home improvement retailer with 140+ stores. Uses PlaywrightCrawler to handle DataDome protection.

Castorama Scraper โ€” French DIY & Home Improvement

studio-amba/castorama-scraper

Scrape products from Castorama.fr, the French DIY giant (Kingfisher group, alongside B&Q and Brico Depot). Tools, materials, kitchen, and bathroom supplies.

Hagebau Scraper โ€” German DIY & Building Supplies

studio-amba/hagebau-scraper

Scrape products from Hagebau.de, one of Germany's major DIY and building supplies retailers. Tools, materials, garden, and home improvement products.

Brico Scraper โ€” Belgian DIY Products & Home Improvement Prices

studio-amba/brico-scraper

Scrape products from Brico.be, Belgium's largest DIY chain (Colruyt Group). Tools, building materials, garden furniture, paint, plumbing, and electrical supplies.

Praxis Scraper โ€” Dutch DIY & Home Improvement Products

studio-amba/praxis-scraper

Scrape DIY products from Praxis.nl via their internal search API. One of the Netherlands' major hardware chains โ€” tools, paint, flooring, and building supplies.