Mohito Scraper avatar
Mohito Scraper

Pricing

$15.00/month + usage

Go to Apify Store
Mohito Scraper

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.

Pricing

$15.00/month + usage

Rating

0.0

(0)

Developer

Paweł

Paweł

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

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:

ParameterTypeDescriptionRequiredDefault
start_urlsArrayDirect URLs to Mohito category/subcategory pagesYes-
category_filterArrayFilter by main categories (e.g., ["ubrania", "akcesoria"])No[]
subcategory_filterArrayFilter by subcategories (e.g., ["kurtki-plaszcze", "sukienki"])No[]
product_seo_keyword_filterArrayFilter by keywords in product URLNo[]
deduplicate_across_all_start_urlsBooleanRemove duplicate products across all URLsNotrue
max_resultsIntegerMaximum products to scrape (0 = unlimited)No100
scrape_product_detailsBooleanVisit each product page for full detailsNofalse
maxConcurrencyIntegerNumber of parallel requests (1-20)No5
maxRequestRetriesIntegerRetry attempts for failed requestsNo3
proxyConfigurationObjectProxy settings for the scraperNo-

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

{
"start_urls": [
{
"url": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze"
}
],
"max_results": 50,
"maxConcurrency": 5
}

Example Input - Multiple Categories

{
"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

{
"start_urls": [
{
"url": "https://www.mohito.com/pl/pl/ubrania/kurtki-plaszcze"
}
],
"scrape_product_details": true,
"max_results": 50
}

Example Input - Multi-Country Scraping

{
"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:

{
"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:

{
"start_urls": []
}

API Endpoints

EndpointMethodDescription
/GETAPI info and available endpoints
/healthGETHealth check
/product?url=...GETScrape a single product

Example Usage

Health Check:

$curl https://your-actor-standby-url/health

Scrape Single Product:

$curl "https://your-actor-standby-url/product?url=https://www.mohito.com/pl/pl/olowkowa-czarna-spodnica-mini-356gg-99x"

API Response Format

{
"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

Check out other scrapers from the same developer:


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.