Mohito Scraper

Mohito Scraper

by trev0n

Fast and reliable scraper for extracting product data from Mohito.com (LPP Group fashion retailer). Uses Algolia API for lightning-fast data extractio...

24 runs
2 users
Try This Actor

Opens on Apify.com

About Mohito Scraper

Fast and reliable scraper for extracting product data from Mohito.com (LPP Group fashion retailer). Uses Algolia API for lightning-fast data extraction - scrape 100+ products in under 1 second.

What does this actor do?

Mohito Scraper is a web scraping and automation tool available on the Apify platform. It's designed to help you extract data and automate tasks efficiently in the cloud.

Key Features

  • Cloud-based execution - no local setup required
  • Scalable infrastructure for large-scale operations
  • API access for integration with your applications
  • Built-in proxy rotation and anti-blocking measures
  • Scheduled runs and webhooks for automation

How to Use

  1. Click "Try This Actor" to open it on Apify
  2. Create a free Apify account if you don't have one
  3. Configure the input parameters as needed
  4. Run the actor and download your results

Documentation

Mohito Product Scraper An Apify Actor for scraping product data from Mohito.com (LPP Group). Extract comprehensive product information including prices, sizes, colors, images, ratings, and material composition. ## Features - Rich Product Data - Complete product information including sizes, colors, materials, and images - Multi-Country Support - Works with any Mohito country and language combination - Advanced Filtering - Filter by categories, subcategories, and product keywords - Smart Deduplication - Prevents duplicate products across multiple categories - Detailed Mode - Optional deep scraping for full product specifications - Real-Time Data - Get current prices and product availability - REST API Mode - On-demand product scraping via HTTP endpoints ## Input Configuration The actor accepts the following input parameters: | Parameter | Type | Description | Required | Default | |-----------|------|-------------|----------|---------| | start_urls | Array | Direct URLs to Mohito category/subcategory pages | Yes | - | | category_filter | Array | Filter by main categories (e.g., ["ubrania", "akcesoria"]) | No | [] | | subcategory_filter | Array | Filter by subcategories (e.g., ["kurtki-plaszcze", "sukienki"]) | No | [] | | product_seo_keyword_filter | Array | Filter by keywords in product URL | No | [] | | deduplicate_across_all_start_urls | Boolean | Remove duplicate products across all URLs | No | true | | max_results | Integer | Maximum products to scrape (0 = unlimited) | No | 100 | | scrape_product_details | Boolean | Visit each product page for full details | No | false | | maxConcurrency | Integer | Number of parallel requests (1-20) | No | 5 | | maxRequestRetries | Integer | Retry attempts for failed requests | No | 3 | | proxyConfiguration | Object | Proxy settings for the scraper | No | - | ### Important Notes About URLs - Only category/subcategory URLs are supported (e.g., https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze) - Homepage URLs will NOT work - always use direct category links ### Example Input - Basic Scraping json { "start_urls": [ { "url": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze" } ], "max_results": 50, "maxConcurrency": 5 } ### Example Input - Multiple Categories json { "start_urls": [ { "url": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze" }, { "url": "https://www.mohito.com/pl/pl/ubrania/sukienki" } ], "deduplicate_across_all_start_urls": true, "max_results": 200 } ### Example Input - With Product Details json { "start_urls": [ { "url": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze" } ], "scrape_product_details": true, "max_results": 50 } ### Example Input - Multi-Country Scraping json { "start_urls": [ { "url": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze" }, { "url": "https://www.mohito.com/de/de/bekleidung/jacken-mantel" }, { "url": "https://www.mohito.com/cz/cz/obleceni/bundy-kabaty" } ], "max_results": 100 } ## Output Format Each product contains comprehensive data: json { "sku": "709FH-99X", "brand": "Mohito", "name": "Puchowa kurtka", "price": 449.99, "currency": "PLN", "hasDiscount": false, "mainImage": "https://static.mohito.com/media/catalog/product/.../709FH-99X-001.jpg", "images": [ "https://static.mohito.com/media/catalog/product/.../709FH-99X-001.jpg", "https://static.mohito.com/media/catalog/product/.../709FH-99X-002.jpg" ], "color": "czarny", "colorVariants": ["czarny", "beżowy"], "sizes": ["32", "34", "36", "38", "40", "42", "44"], "rating": 4.5, "ratingCount": 10, "reviewCount": 9, "stickers": ["Naturalny puch", "Jakość premium"], "materials": [ "MATERIAŁ PIERWSZY: 100% POLIAMID", "WYPEŁNIENIE: 80% PUCH, 20% PIERZE", "PODSZEWKA: 100% POLIAMID" ], "productDescription": "Elegancka kurtka puchowa z kapturem...", "features": ["wysoki kołnierz", "zapięcie na zamek", "dwie kieszenie boczne"], "category": "ubrania", "subcategory": "kurtki-plaszcze", "website": "https://www.mohito.com", "categoryPage": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze", "productPage": "https://www.mohito.com/pl/pl/puchowa-kurtka-709fh-99x", "scrapedAt": "2025-01-15T10:30:00.000Z" } ## Output Fields Reference ### Basic Product Information - sku - Product SKU/ID (e.g., "709FH-99X") - brand - Always "Mohito" - name - Product name ### Pricing - price - Current/final price - currency - Currency code (PLN, EUR, CZK, etc.) - hasDiscount - Boolean indicating if product is on sale - originalPrice - Original price before discount (if applicable) ### Images & Media - mainImage - Primary product image URL - images - Array of all product image URLs (available with scrape_product_details: true) ### Colors & Sizes - color - Main product color - colorVariants - Array of available colors (available with scrape_product_details: true) - sizes - Array of available sizes (available with scrape_product_details: true) ### Ratings & Reviews - rating - Average rating (0.0-5.0) or null - ratingCount - Number of ratings - reviewCount - Number of reviews ### Promotional Information - stickers - Array of promotional tags (e.g., "Bestseller", "NOWOŚĆ", "Naturalny puch") ### Product Details (with scrape_product_details: true) - productDescription - Full product description - features - Array of product features - materials - Array of material composition - careInstructions - Array of care instructions ### Metadata - category - Main category from URL (e.g., "ubrania") - subcategory - Subcategory from URL (e.g., "kurtki-plaszcze") - website - Always "https://www.mohito.com" - categoryPage - Source category page URL - productPage - Direct product page URL - scrapedAt - ISO 8601 timestamp ### Notes on Data Availability - All fields are always present in the output - Fields may be null, empty strings "", or empty arrays [] if data is not available - Full product details (sizes, materials, all images) require scrape_product_details: true ## Use Cases - E-commerce Monitoring - Track competitor pricing and product availability - Price Intelligence - Monitor price changes and discount patterns - Market Research - Analyze product trends across different countries - Product Catalog - Build comprehensive product databases - Fashion Analytics - Analyze clothing trends, colors, and sizes - Multi-Market Strategy - Compare offerings across different Mohito markets ## Supported Countries - Poland: https://www.mohito.com/pl/pl/... - Czech Republic: https://www.mohito.com/cz/cz/... - Slovakia: https://www.mohito.com/sk/sk/... - Hungary: https://www.mohito.com/hu/hu/... - Romania: https://www.mohito.com/ro/ro/... - Germany: https://www.mohito.com/de/de/... ## Best Practices - Start with scrape_product_details: false for quick data extraction - Enable scrape_product_details: true when you need sizes, materials, and all images - Set reasonable max_results to control run time - Use proxies for large-scale scraping to avoid rate limiting - Only category URLs work - Homepage URLs are not supported ## REST API Mode (Standby) The scraper supports an API mode for on-demand product scraping. When you run the Actor with empty start_urls, it starts an HTTP server that allows you to scrape individual products via API calls. ### Enabling API Mode Run the Actor with empty start URLs: json { "start_urls": [] } ### API Endpoints | Endpoint | Method | Description | |----------|--------|-------------| | / | GET | API info and available endpoints | | /health | GET | Health check | | /product?url=... | GET | Scrape a single product | ### Example Usage Health Check: bash curl https://your-actor-standby-url/health Scrape Single Product: bash curl "https://your-actor-standby-url/product?url=https://www.mohito.com/pl/pl/olowkowa-czarna-spodnica-mini-356gg-99x" ### API Response Format json { "name": "Ołówkowa czarna spódnica mini", "price": 89.99, "currency": "PLN", "sku": "356GG-99X", "color": "czarna", "sizes": ["XS", "S", "M", "L", "XL"], "images": ["https://static.mohito.com/..."], "rating": 4.5, "ratingCount": 116, "stickers": ["Bestseller"], "brand": "Mohito", "productPage": "https://www.mohito.com/pl/pl/olowkowa-czarna-spodnica-mini-356gg-99x", "scrapedAt": "2025-01-15T10:30:00.000Z" } ### Use Cases for API Mode - Real-time Price Checking - Get current product data on demand - Integration with Other Systems - Connect via HTTP for automated workflows - Single Product Lookups - When you don't need bulk scraping --- ## Related Actors Check out other scrapers from the same developer: - Sinsay Scraper - Fast scraper for Sinsay.com product data (same LPP Group as Mohito) - Ceneo Product Scraper - Extract product data and prices from Poland's largest price comparison website - Empik Product Search Scraper - Scrape product listings from Empik.com search results and category pages - Empik Product Page Details Scraper - Extract detailed product data from Empik.com product pages - Pracuj.pl Scraper - Scrape job listings from Poland's leading job portal --- ## Your Feedback We are always working to improve our scrapers. If you have any technical feedback or found a bug, please create an issue in the repository or contact us through Apify Console.

Common Use Cases

Market Research

Gather competitive intelligence and market data

Lead Generation

Extract contact information for sales outreach

Price Monitoring

Track competitor pricing and product changes

Content Aggregation

Collect and organize content from multiple sources

Ready to Get Started?

Try Mohito Scraper now on Apify. Free tier available with no credit card required.

Start Free Trial

Actor Information

Developer
trev0n
Pricing
Paid
Total Runs
24
Active Users
2
Apify Platform

Apify provides a cloud platform for web scraping, data extraction, and automation. Build and run web scrapers in the cloud.

Learn more about Apify

Need Professional Help?

Couldn't solve your problem? Hire a verified specialist on Fiverr to get it done quickly and professionally.

Find a Specialist

Trusted by millions | Money-back guarantee | 24/7 Support