# Eobuwie Product Search Scraper (`stealth_mode/eobuwie-product-search-scraper`) Actor

Scrape product listings from Eobuwie's search pages across all regional domains (.com.pl, .de, etc.). Collect product names, SKUs, color variants, images, pricing, and marketing data — perfect for price monitoring, inventory tracking, and competitive analysis.

- **URL**: https://apify.com/stealth\_mode/eobuwie-product-search-scraper.md
- **Developed by:** [Stealth mode](https://apify.com/stealth_mode) (community)
- **Categories:** Automation, Developer tools, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Eobuwie Product Search Scraper: Harvest Shoe Catalog Data Across Regions

---

### What Is Eobuwie?

Eobuwie is a major European footwear e-commerce platform operating across multiple countries with localized domains (.com.pl, .de, .fr, .es, and others). It hosts hundreds of thousands of shoe products, from budget-friendly options to premium brands. Manually extracting product data from search results is tedious and error-prone — the **Eobuwie Product Search Scraper** automates this workflow, delivering structured product records ready for analysis, price tracking, or marketplace integration.

---

### Overview

The **Eobuwie Product Search Scraper** extracts product listings from Eobuwie search result pages (category pages, filtered results, paginated lists). It is built for:

- **Price intelligence specialists** monitoring Eobuwie's pricing strategies across regions
- **Inventory managers** tracking stock and variant availability
- **Retailers and resellers** comparing Eobuwie's offerings with competitors
- **E-commerce aggregators** building multi-source product catalogs
- **Marketing analysts** studying product positioning and promotional campaigns

Key strengths include multi-domain support (scrape any Eobuwie regional domain simultaneously), configurable item limits, fault tolerance, and rich product metadata including images and variant data.

---

### Input Format

The scraper accepts a JSON configuration object with the following parameters:

```json
{
  "urls": [
    "https://eobuwie.com.pl/c/damskie?p=2",
    "https://eobuwie.de/c/damen-schuhe?p=1"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 200
}
````

| Parameter | Type | Required | Description |
|---|---|---|---|
| `urls` | Array | Yes | Direct links to Eobuwie product search/category pages. Supports pagination parameters (e.g., `?p=2`). Works across all regional domains (.com.pl, .de, .fr, .es, etc.). |
| `max_items_per_url` | Integer | No | Maximum product records extracted per URL. Default: 20. Set to 200+ for comprehensive category exports. |
| `ignore_url_failures` | Boolean | No | If `true`, the scraper continues running if some URLs fail. Useful for batch jobs targeting many pages. Default: `true`. |

> **Pro tip:** Use pagination parameters to divide large categories into smaller batches. Example: `?p=1`, `?p=2`, `?p=3` for page-by-page collection.

***

### Output Format

#### Example Output Record

```json
{
  "sku": "5906751845523",
  "name": "Baleriny Kappa CEO-WP40-046Z Czarny",
  "color_variants_link": {
    "value": "KAPPA-CEO-WP40-046Z",
    "url": "grupowanie"
  },
  "color_variants_count": 2,
  "design_system": {
    "id": "5906751845523",
    "brand": "Kappa",
    "name": "Baleriny · Czarny",
    "url": "/p/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523",
    "color": "#211A23",
    "price": {
      "final": "179,99 zł",
      "regular": null,
      "minimal": "179,99 zł",
      "is_discounted": false,
      "is_cents_enabled": true,
      "is_currency_before": false,
      "show_omnibus": false,
      "show_previous": false,
      "show_price_prefix": false,
      "minimal_discount": null,
      "regular_discount": null
    },
    "images": [
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(1/d/0/5/1d051d439a9aa99438d90ed9360091f00f465ce8_21_5906751845523_AP_M_AI.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(8/a/8/b/8a8bec4a07c29589cd2df0a980627cf0d6b7ff6d_22_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(b/5/3/8/b538ca376096bd065bd5361d273901c56a658e36_23_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(6/a/3/2/6a32606d28023b4e5cabc95e87e2c494f3f5ce02_24_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(1/0/d/a/10dabe9c38af0ab29ed506068f89bceb09b5c129_25_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(d/5/c/a/d5ca6ef72a5d38cb10a8fac0e526d2cf735862f2_26_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(6/5/3/0/6530c6a6949b395232d36487a77d89babc7fe329_27_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      },
      {
        "width": 280,
        "height": 373,
        "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
        "sources": {
          "webp": [
            {
              "src": "https://img.eobuwie.cloud/productcard(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
              "width": 326
            }
          ],
          "jpg": [
            {
              "src": "https://img.eobuwie.cloud/productcard(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 280
            },
            {
              "src": "https://img.eobuwie.cloud/product(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 560
            },
            {
              "src": "https://img.eobuwie.cloud/productcard_stylization(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
              "width": 326
            }
          ]
        },
        "src": "https://img.eobuwie.cloud/productcard(2/d/f/9/2df9e048150c6d3fa01a59b3c8e5900400136b84_28_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
      }
    ],
    "badges": [],
    "promo_badge": {
      "label": "extra -25% Kod: DAYS",
      "color": "#211a23",
      "background_color": "#ED7423"
    },
    "sizes": [
      "Dostępny w wielu rozmiarach"
    ]
  },
  "open_graph_image": [
    {
      "width": 560,
      "height": 746,
      "alt": "Kappa Baleriny Kappa CEO-WP40-046Z Czarny",
      "sources": {
        "webp": [
          {
            "src": "https://img.eobuwie.cloud/product(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,webp)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.webp",
            "width": 560
          }
        ],
        "jpg": [
          {
            "src": "https://img.eobuwie.cloud/product(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg",
            "width": 560
          }
        ]
      },
      "src": "https://img.eobuwie.cloud/product(0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg,jpg)/baleriny-kappa-ceo-wp40-046z-czarny-5906751845523.jpg"
    }
  ],
  "currency": "PLN",
  "ad_tech_events": {
    "on_click_beacons": [
      "https://6576656e7473.modivo.io/clicks?data=XfIai4VETF5E-t35DDMq0rzEsF2hW4rI_4s7ZdlCu42IIyvc4Wtpgc0_iN6Cnr50aCX1HM1zMpIPoxZQMnIPLCNc_2qtvj0YQE4cgBnxdRz93zviaSe53bvtmlf75gF7cYw4MDcUsOIVnKqd3SlaO6jy4UCK9ZLjUR8AEuXUGWvYqz52shz4-VgCk2eZPYcu7OKgD3lvy9kTQwI2Zctaixe39CtltiMlODA7CQmRkqytJNsJQxKbMhhMBWE-cksGFJPnqRQWfkQ3Wc6mEz486bCwssZRJrUCCGE76zaRlxsu-YDXfCGzJQLQ5o4&debugId=6770c7ca-549c-4352-8463-88381b31e602:0&mac=iOHfh9xnqLcUnEBtl0zcjm9g75FiteEqFcdPCvBDPo4"
    ],
    "on_view_beacons": [
      "https://6576656e7473.modivo.io/views?data=rd1i3yfIBGswXcUv-dZII6zLHBN4-Ae0-kpncHMOMpBkeUq6bcLN4foTdQJ2rn8vqafGqVydS87ZHsM70I84_Fke6orVCq_fqO3GdcI4fK4-48X1TUzdhJ1yLfhllwwGe8FIf1jigcRL-4zUNHk9ZOzcZcE&debugId=6770c7ca-549c-4352-8463-88381b31e602:0&mac=g8LvBShY8r2eA5nAwp_GW4KDHexEJdV1ckJRXqpdc1c"
    ],
    "on_load_beacons": []
  },
  "company_account_id": "af319cc1-9235-4f0f-9f84-4a8890220d57",
  "is_sponsored": true,
  "main_product_image_slug": "0/1/4/c/014c93c1e2557ff1e250876a37e88597aa6354b8_20_5906751845523.jpg",
  "image_badges": [],
  "from_url": "https://eobuwie.com.pl/c/damskie?itm_source=ovm&itm_medium=menu_navbar&itm_campaign=damskie"
}
```

Each product extracted from Eobuwie returns a detailed record with 10+ structured fields:

#### Product Identification

| Field | Data Type | Meaning |
|---|---|---|
| `SKU` | String | Unique product identifier within Eobuwie's catalog system. Used for inventory tracking and order reconciliation. |
| `Name` | String | Official product name (e.g., "Nike Air Max 90 Women's White"). Includes brand, model, and key descriptors. |

#### Visual & Design Data

| Field | Data Type | Meaning |
|---|---|---|
| `Main Product Image Slug` | String | URL slug or identifier for the primary product photo. Useful for linking to full-resolution images or CDN paths. |
| `Open Graph Image` | URL | OG image URL used for social media previews. Typically a high-quality product photo optimized for sharing. |
| `Image Badges` | Array/String | Visual badges overlaid on product images (e.g., "SALE", "NEW", "EXCLUSIVE"). Indicates promotional status or inventory flags. |
| `Design System` | String | Internal Eobuwie design/branding classification (e.g., style category, collection name, seasonal line). Helps with product categorization. |

#### Variants & Availability

| Field | Data Type | Meaning |
|---|---|---|
| `Color Variants Count` | Integer | Number of available color/style options for this product (e.g., `5` if the shoe comes in black, white, red, blue, navy). |
| `Color Variants Link` | URL | URL pointing to the product detail page or variant selector page where all colors are visible. Useful for accessing the full product view. |

#### Pricing & Currency

| Field | Data Type | Meaning |
|---|---|---|
| `Currency` | String | Pricing currency for this listing (e.g., "PLN" for Polish Zloty, "EUR" for Euro, "GBP" for British Pounds). Varies by domain region. |

#### Marketing & Advertising

| Field | Data Type | Meaning |
|---|---|---|
| `Is Sponsored` | Boolean | Whether the product listing is a paid/sponsored result (placed by the seller or via ad platform). `true` = sponsored, `false` = organic. |
| `Ad Tech Events` | String/Array | Tracking codes or event IDs for advertising platforms (Google Ads, Facebook Pixel, etc.). Used for conversion tracking and attribution. |
| `Company Account ID` | String | Internal Eobuwie seller or vendor account ID. Identifies who is selling the product (Eobuwie direct, third-party seller, brand account). |

***

### How to Use

1. **Identify target pages** — Navigate to Eobuwie (any regional domain). Find category or search result pages you want to scrape (e.g., Women's Shoes, Sneakers, Sale items). Copy the full URL including pagination parameters.

2. **Prepare URLs** — List all target URLs in the `urls` array. You can combine multiple domains in a single run (e.g., .com.pl and .de together).

3. **Set item limit** — Adjust `max_items_per_url` based on your needs:
   - `20–50` for quick previews
   - `100–200` for complete category exports
   - Higher for bulk data collection

4. **Enable resilience** — Keep `ignore_url_failures: true` for multi-URL runs to prevent one failed page from stopping the entire job.

5. **Run & export** — Start the scraper. Monitor progress in the run log. Download results as JSON, CSV, or Excel when complete.

**Troubleshooting:**

- If no products appear, verify the URL is a product listing page (not a brand page or promotion page).
- Currency field helps identify regional variants; filter by currency if needed for region-specific analysis.
- If `Is Sponsored` data is missing, the page may not expose ad status; not all domains report this uniformly.

***

### Use Cases & Business Value

- **Price monitoring** — Track Eobuwie's pricing trends daily or weekly across regions; detect discounts and promotions automatically.
- **Competitive benchmarking** — Compare Eobuwie's product selection, pricing, and marketing tactics against other footwear retailers.
- **Inventory visibility** — Understand available colors, stock levels (via variant counts), and seasonal product rotation.
- **Marketplace aggregation** — Feed Eobuwie's catalog into your own product database or multi-seller price comparison platform.
- **SEO & content research** — Extract product names and descriptions for keyword analysis or content planning.
- **Ad analytics** — Analyze sponsored vs. organic listing performance; measure ad spend effectiveness across regions.

The **Eobuwie Product Search Scraper** transforms manual product research into an automated, scalable data pipeline — saving hours and unlocking insights for pricing strategy, marketing, and inventory decisions.

***

### Conclusion

The **Eobuwie Product Search Scraper** is your gateway to structured, multi-regional footwear product data. With 10+ fields spanning SKU, images, variants, pricing, and marketing signals, it delivers the intelligence needed to stay competitive in the e-commerce footwear space. Start scraping today and transform Eobuwie's search pages into actionable business data.

# Actor input Schema

## `urls` (type: `array`):

Add the URLs of the product search list urls you want to scrape. You can paste URLs one by one, or use the Bulk edit section to add a prepared list.

## `ignore_url_failures` (type: `boolean`):

If true, the scraper will continue running even if some URLs fail to be scraped.

## `max_items_per_url` (type: `integer`):

The maximum number of items to scrape per URL.

## `proxy` (type: `object`):

Select proxies to be used by your scraper.

## Actor input object example

```json
{
  "urls": [
    "https://eobuwie.com.pl/c/damskie?p=2"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 20,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# 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 = {
    "urls": [
        "https://eobuwie.com.pl/c/damskie?p=2"
    ],
    "ignore_url_failures": true,
    "max_items_per_url": 20,
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("stealth_mode/eobuwie-product-search-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 = {
    "urls": ["https://eobuwie.com.pl/c/damskie?p=2"],
    "ignore_url_failures": True,
    "max_items_per_url": 20,
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

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

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

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

```

## CLI example

```bash
echo '{
  "urls": [
    "https://eobuwie.com.pl/c/damskie?p=2"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 20,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call stealth_mode/eobuwie-product-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=stealth_mode/eobuwie-product-search-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Eobuwie Product Search Scraper",
        "description": "Scrape product listings from Eobuwie's search pages across all regional domains (.com.pl, .de, etc.). Collect product names, SKUs, color variants, images, pricing, and marketing data — perfect for price monitoring, inventory tracking, and competitive analysis.",
        "version": "0.0",
        "x-build-id": "uRgkr6ko4oey0httr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/stealth_mode~eobuwie-product-search-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-stealth_mode-eobuwie-product-search-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/stealth_mode~eobuwie-product-search-scraper/runs": {
            "post": {
                "operationId": "runs-sync-stealth_mode-eobuwie-product-search-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/stealth_mode~eobuwie-product-search-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-stealth_mode-eobuwie-product-search-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "urls": {
                        "title": "URLs of the product search list urls to scrape",
                        "type": "array",
                        "description": "Add the URLs of the product search list urls you want to scrape. You can paste URLs one by one, or use the Bulk edit section to add a prepared list.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "ignore_url_failures": {
                        "title": "Continue running even if some URLs fail to be scraped",
                        "type": "boolean",
                        "description": "If true, the scraper will continue running even if some URLs fail to be scraped."
                    },
                    "max_items_per_url": {
                        "title": "Max items per URL",
                        "type": "integer",
                        "description": "The maximum number of items to scrape per URL."
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Select proxies to be used by your scraper."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
