# Mumzworld Baby & Family Product Scraper (`coolinbex/mumzworld-baby-product-scraper`) Actor

Extract public Mumzworld baby and family products, prices, currencies, sale pricing, stock, ratings, reviews, brands, categories, attributes and images from catalog, listing and product pages.

- **URL**: https://apify.com/coolinbex/mumzworld-baby-product-scraper.md
- **Developed by:** [coolinbex](https://apify.com/coolinbex) (community)
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Mumzworld Baby & Family Product Scraper

Production-oriented Apify Actor for extracting **public** Mumzworld baby, kids,
motherhood, toy and family catalog pages. It uses the rendered storefront only:
there is no login, private API, CAPTCHA bypass, or access-control bypass.

### What it collects

One product record can include title, product ID, SKU, brand, category, age
range, current/list/sale price, currency, availability and stock state, rating,
review count, description, visible attributes, public image URLs and optionally
up to 10 visible review snippets. Listing pages are paginated within the
configured bound and product URLs are deduplicated.

### Input

```json
{
  "startUrls": [{ "url": "https://www.mumzworld.com/en-ae/baby" }],
  "searchQueries": ["baby bottles"],
  "maxProducts": 50,
  "maxPages": 3,
  "includeReviews": false,
  "minDelayMs": 1200
}
```

`startUrls` accepts public Mumzworld listing/category/search/product URLs. If
omitted, the baby catalog is used. `searchQueries` creates public-site search
URLs. `maxProducts` (1–500), `maxPages` (1–20), concurrency (1–3), retries
(0–3), and request delay (250–10,000 ms) are bounded to control traffic and
cost. Proxy configuration is optional and must be authorized for the traffic.

### Output and failure semantics

The dataset contains `recordType: "product"` records plus one
`recordType: "runSummary"` record. Product `status` is:

- `ok`: core product fields were publicly available.
- `partial`: the page rendered but fields such as title, price or ID were
  missing; `warnings` explains the gap.
- `blocked`: a public challenge/access-denied page was returned.
- `error`: the request failed after bounded retries.

An empty listing, blocked page, or source markup change is represented
explicitly. A run with no usable product or partial records exits unsuccessfully
so monitoring does not mistake an empty crawl for success. Inspect
`RUN-SUMMARY`, dataset records, logs, and the exit status together.

### Limits, cost and safe use

Runtime and cost are driven mainly by product-page count, browser startup,
pagination and proxy usage. A practical run of 50 products across three pages
usually makes roughly 51–60 navigations; a one-product smoke run is much
cheaper. Apify compute, proxy traffic and storage are billed according to your
Apify plan; this Actor does not add a separate fee.

Use conservative limits and schedules, respect Mumzworld terms, robots
guidance, rate limits and applicable law, and collect only information exposed
to an unauthenticated visitor. Do not use the Actor to bypass challenges,
authentication, geographic controls or other access restrictions. Store
outputs securely and honor deletion/opt-out requests where applicable.

### Local quality gate

```text
npm ci
npm test
npm run build
```

Tests cover defaults, invalid input, empty listings, pagination URL handling,
partial extraction, retry/failure-shaped records and blocked/source-change
fixtures without making network requests.

# Actor input Schema

## `startUrls` (type: `array`):

Public Mumzworld catalog, search, category, listing or product URLs. If omitted, the default baby catalog is used.

## `searchQueries` (type: `array`):

Optional public-site search terms. The actor constructs the site's search URL.

## `maxProducts` (type: `integer`):

Hard cap on unique product records.

## `maxPages` (type: `integer`):

Bounded pagination depth.

## `includeImages` (type: `boolean`):

Keep up to 30 public product image URLs.

## `includeDescription` (type: `boolean`):

Keep the public description and visible specification attributes.

## `includeReviews` (type: `boolean`):

Collect only reviews rendered on the public product page, up to 10.

## `maxConcurrency` (type: `integer`):

Number of simultaneous browser pages; keep low for responsible crawling.

## `minDelayMs` (type: `integer`):

Minimum per-domain pacing delay in milliseconds.

## `maxRequestRetries` (type: `integer`):

Maximum retries for a failed page before an explicit error record.

## `proxyConfiguration` (type: `object`):

Optional authorized Apify proxy configuration.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.mumzworld.com/en/c/diapers"
    }
  ],
  "maxProducts": 50,
  "maxPages": 3,
  "includeImages": true,
  "includeDescription": true,
  "includeReviews": false,
  "maxConcurrency": 1,
  "minDelayMs": 1200,
  "maxRequestRetries": 2
}
```

# Actor output Schema

## `runSummary` (type: `string`):

Counts, completion status and source-quality warnings for the completed crawl.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("coolinbex/mumzworld-baby-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("coolinbex/mumzworld-baby-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call coolinbex/mumzworld-baby-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,coolinbex/mumzworld-baby-product-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/2jJrgKDgwdBrrtO8J/builds/nkAEa8O1gSWVu5ek5/openapi.json
