# Sinsay Scraper (`trev0n/sinsay-scraper`) Actor

Fast scraper for Sinsay.com product data. Extract prices, variants, stock levels, images, and ratings from any Sinsay market.

- **URL**: https://apify.com/trev0n/sinsay-scraper.md
- **Developed by:** [Paweł](https://apify.com/trev0n) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 4 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$15.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

## 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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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

## Sinsay Product Scraper

A blazingly fast Apify Actor for scraping product data from Sinsay.com. Extract comprehensive product information including prices, variants, images, stock levels and ratings.

### Features

- **Extremely Fast** - Scrapes 1000 products in ~17 seconds (59 products/second)
- **Rich Product Data** - Complete product information including all variants, sizes, colors, and stock levels
- **Multi-Country Support** - Works with any Sinsay country and language combination
- **Advanced Filtering** - Filter by categories, subcategories, and product keywords
- **Smart Deduplication** - Prevents duplicate products across multiple categories
- **Real-Time Stock** - Get current availability and stock quantities per size/color
- **Comprehensive Variants** - Extract all color options with sizes, images, and videos
- **Cost-Effective** - Minimal compute usage due to API-based approach (no heavy DOM parsing)
- **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 Sinsay category/subcategory pages | Yes | - |
| `category_filter` | Array | Filter by main categories (e.g., ["kobieta", "mezczyzna"]) | No | [] |
| `subcategory_filter` | Array | Filter by subcategories (e.g., ["odziez", "buty"]) | 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 |
| `maxConcurrency` | Integer | Number of parallel API requests (1-20) | No | 10 |
| `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.sinsay.com/pl/pl/kobieta/najchetniej-kupowane`)
- **Homepage URLs will NOT work** - always use direct category links

#### Example Input - Basic Scraping

```json
{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
    }
  ],
  "max_results": 50,
  "maxConcurrency": 10
}
````

#### Example Input - Multiple Categories

```json
{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
    },
    {
      "url": "https://www.sinsay.com/pl/pl/mezczyzna/bestseller"
    }
  ],
  "deduplicate_across_all_start_urls": true,
  "max_results": 200,
  "maxConcurrency": 15
}
```

#### Example Input - Multi-Country Scraping

```json
{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
    },
    {
      "url": "https://www.sinsay.com/de/de/damen/bestseller"
    },
    {
      "url": "https://www.sinsay.com/uk/en/woman/bestsellers"
    }
  ],
  "max_results": 100,
  "maxConcurrency": 12
}
```

#### Example Input - Filtered by Keywords

```json
{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/odziez"
    }
  ],
  "product_seo_keyword_filter": ["sukienka", "spodnie"],
  "max_results": 100,
  "maxConcurrency": 10
}
```

#### Example Input - Unlimited Scraping

```json
{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
    }
  ],
  "max_results": 0,
  "maxConcurrency": 15,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

### Output Format

Each product contains comprehensive data extracted directly from Sinsay's API:

```json
{
  "sku": "710FJ-99M",
  "brand": "Sinsay",
  "name": "Spodnie wide leg",

  "price": 59.99,
  "currency": "PLN",
  "hasDiscount": false,
  "discountPercent": null,
  "priceIncludesTax": true,

  "mainImage": "https://static.sinsay.com/media/catalog/product/.../710FJ-99M-001-1.jpg",
  "images": [
    "https://static.sinsay.com/media/catalog/product/.../710FJ-99M-001-1.jpg",
    "https://static.sinsay.com/media/catalog/product/.../710FJ-99M-050-1.jpg"
  ],

  "stickers": [
    {
      "type": "custom",
      "text": "DRUGA RZECZ -50%",
      "color": "#000000",
      "backgroundColor": "#000000"
    },
    {
      "type": "tertiary",
      "text": "NOWOŚĆ",
      "color": "#2c8ee4",
      "backgroundColor": ""
    }
  ],

  "avgRating": 4.92,
  "ratingCount": 15,
  "ratingStars": "5",

  "isBestseller": true,
  "bestsellerCategory": "Spódnice damskie",

  "colorOptions": [
    {
      "id": 6582693,
      "sku": "710FJ-99M",
      "colorName": "czarny",
      "colorCode": "BLACK",
      "colorPhoto": "https://static.sinsay.com/media/.../710FJ-99M-999-1.jpg",
      "isActive": true,
      "isInStock": true,
      "url": "https://www.sinsay.com/pl/pl/spodnie-wide-leg-710fj-99m",

      "prices": {
        "currency": "PLN",
        "finalPrice": 59.99,
        "hasDiscount": false
      },

      "sizes": [
        {
          "size": "XS",
          "sku": "710FJ-99M-XS",
          "sizeId": 1035,
          "inStock": true,
          "stockQuantity": 30,
          "inTransitStock": false,
          "price": 59.99
        }
      ],

      "images": [
        "https://static.sinsay.com/media/.../710FJ-99M-001-1.jpg"
      ],

      "videoUrls": {
        "desktop": "https://static.sinsay.com/media/SHARED/video/video_710FJ-99M_DESKTOP.mp4",
        "mobile": "https://static.sinsay.com/media/SHARED/video/video_710FJ-99M_MOBILE.mp4",
        "tablet": "https://static.sinsay.com/media/SHARED/video/video_710FJ-99M_TABLET.mp4"
      },

      "ratingData": {
        "avgRating": 4.92,
        "ratingCount": 15
      }
    }
  ],

  "sizes": [
    {
      "size": "XS",
      "sizeId": 1035,
      "inStock": true,
      "stockQuantity": 30
    }
  ],

  "category": "kobieta",
  "subcategory": "nowosci",
  "website": "https://www.sinsay.com",
  "categoryPage": "https://www.sinsay.com/pl/pl/kobieta/nowosci",
  "productPage": "https://www.sinsay.com/pl/pl/spodnie-wide-leg-710fj-99m",
  "scrapedAt": "2025-01-15T10:30:00.000Z"
}
```

### Output Fields Reference

#### Basic Product Information

- `sku` - Product SKU/ID
- `brand` - Always "Sinsay"
- `name` - Product name

#### Pricing

- `price` - Current/final price
- `currency` - Currency code (PLN, EUR, USD, etc.)
- `hasDiscount` - Boolean indicating if product is on sale
- `discountPercent` - Discount percentage (e.g., "30%") or null
- `priceIncludesTax` - Always true for Sinsay

#### Images & Media

- `mainImage` - Primary product image URL
- `images` - Array of all product image URLs

#### Promotional Information

- `stickers` - Array of promotional tags/stickers
  - `type` - "custom" or "tertiary"
  - `text` - Sticker text (e.g., "NEW", "-30%")
  - `color` - Text color
  - `backgroundColor` - Background color

#### Ratings & Reviews

- `avgRating` - Average rating (0.0-5.0) or null
- `ratingCount` - Number of reviews
- `ratingStars` - Star category ("0" to "5") or null

#### Bestseller Status

- `isBestseller` - Boolean indicating bestseller status
- `bestsellerCategory` - Bestseller category name or null

#### Color Variants

- `colorOptions` - Array of color variants (null if none)
  - `id` - Variant ID
  - `sku` - Variant SKU
  - `colorName` - Color name (e.g., "czarny", "biały")
  - `colorCode` - Color code (e.g., "BLACK", "WHITE")
  - `colorPhoto` - Color swatch image URL
  - `isActive` - Boolean indicating if variant is active
  - `isInStock` - Boolean indicating availability
  - `url` - Direct URL to this color variant
  - `prices` - Pricing for this color
    - `currency` - Currency code
    - `finalPrice` - Current price
    - `hasDiscount` - Discount status
  - `sizes` - Array of available sizes
    - `size` - Size name (XS, S, M, L, XL, etc.)
    - `sku` - Size-specific SKU
    - `sizeId` - Size ID
    - `inStock` - Availability boolean
    - `stockQuantity` - Number of items in stock
    - `inTransitStock` - Stock in transit boolean
    - `price` - Price for this size
  - `images` - Array of images for this color
  - `videoUrls` - Product videos
    - `desktop` - Desktop video URL
    - `mobile` - Mobile video URL
    - `tablet` - Tablet video URL
  - `ratingData` - Ratings for this color variant
    - `avgRating` - Average rating
    - `ratingCount` - Review count

#### Sizes (General)

- `sizes` - Array of sizes when no color options (null if colorOptions exist)
  - `size` - Size name
  - `sizeId` - Size ID
  - `inStock` - Availability
  - `stockQuantity` - Stock level

#### Metadata

- `category` - Main category from URL (e.g., "kobieta")
- `subcategory` - Subcategory from URL (e.g., "nowosci")
- `website` - Always "https://www.sinsay.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
- `colorOptions` and `sizes` are mutually exclusive - if `colorOptions` exists, `sizes` is usually null
- Stock quantities reflect real-time availability
- Not all products have ratings or bestseller status

### Use Cases

- **E-commerce Monitoring** - Track competitor pricing and product availability
- **Price Intelligence** - Monitor price changes and discount patterns
- **Inventory Analysis** - Track stock levels and product availability
- **Market Research** - Analyze product trends across different countries
- **Product Catalog** - Build comprehensive product databases
- **Trend Analysis** - Identify bestsellers and popular products
- **Multi-Market Strategy** - Compare offerings across different Sinsay markets
- **Fashion Analytics** - Analyze clothing trends, colors, and sizes

### Performance & Best Practices

#### Speed & Efficiency

The scraper uses **API-first approach** which makes it exceptionally fast:

- **1000 products**: ~17 seconds
- **Throughput**: ~59 products/second
- **Per product**: ~0.017 seconds

This is **60x faster** than traditional HTML scraping methods!

#### Important Notes

- **Only category/subcategory URLs work** - Homepage URLs are not supported
- **Enable proxies** for large-scale scraping to avoid rate limiting
- The scraper handles pagination automatically (100 products per API call)

### 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 or entire categories 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 page |
| `/category?url=...&limit=N` | GET | Scrape products from category (default limit: 100) |

#### 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.sinsay.com/pl/pl/spodnie-wide-leg-710fj-99m"
```

**Scrape Category (with limit):**

```bash
curl "https://your-actor-standby-url/category?url=https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane&limit=50"
```

#### API Response Format

**Single Product Response:**

```json
{
  "name": "Spodnie wide leg",
  "price": 59.99,
  "currency": "PLN",
  "sku": "710FJ-99M",
  "color": "czarny",
  "sizes": ["XS", "S", "M", "L", "XL"],
  "images": ["https://static.sinsay.com/..."],
  "brand": "Sinsay",
  "productPage": "https://www.sinsay.com/pl/pl/spodnie-wide-leg-710fj-99m",
  "scrapedAt": "2025-01-15T10:30:00.000Z"
}
```

**Category Response:**

```json
{
  "count": 50,
  "products": [
    {
      "sku": "710FJ-99M",
      "brand": "Sinsay",
      "name": "Spodnie wide leg",
      "price": 59.99,
      "currency": "PLN",
      "hasDiscount": false,
      "mainImage": "https://static.sinsay.com/...",
      "colorOptions": [...],
      "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
- **Category Snapshots** - Quick category scraping with customizable limits

***

### Related Actors

Check out other scrapers from the same developer:

- **[Mohito Scraper](https://apify.com/trev0n/mohito-scraper)** - Scrape product data from Mohito.com (same LPP Group as Sinsay)
- **[Ceneo Product Scraper](https://apify.com/trev0n/ceneo-scraper)** - Extract product data and prices from Poland's largest price comparison website
- **[Empik Product Search Scraper](https://apify.com/trev0n/empik-product-search-scraper)** - Scrape product listings from Empik.com search results and category pages
- **[Empik Product Page Details Scraper](https://apify.com/trev0n/empik-product-page-details-scraper)** - Extract detailed product data from Empik.com product pages
- **[Pracuj.pl Scraper](https://apify.com/trev0n/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.

# Actor input Schema

## `start_urls` (type: `array`):

List of Sinsay category/listing URLs to scrape. Must be category or subcategory pages (e.g., https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane). Homepage URLs are not supported - use direct category URLs instead.

## `category_filter` (type: `array`):

Filter by main categories (e.g., \['kobieta', 'mezczyzna', 'dzieci']). Leave empty to scrape all categories.

## `subcategory_filter` (type: `array`):

Filter by subcategories (e.g., \['najchetniej-kupowane', 'odziez', 'buty']). Leave empty to scrape all subcategories.

## `product_seo_keyword_filter` (type: `array`):

Filter by product SEO keywords in URL (e.g., \['t-shirt', 'jeans']). Leave empty to scrape all products.

## `deduplicate_across_all_start_urls` (type: `boolean`):

If true, prevents the same product from appearing multiple times when scraping multiple categories or URLs.

## `max_results` (type: `integer`):

Maximum number of products to scrape. Set to 0 for unlimited.

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

Maximum number of pages to process in parallel. Higher values = faster scraping but more memory usage. Recommended: 10-15 for API scraping.

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

How many times to retry failed requests.

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

Proxy settings to avoid blocking. Residential proxies recommended for best results.

## Actor input object example

```json
{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
    }
  ],
  "category_filter": [],
  "subcategory_filter": [],
  "product_seo_keyword_filter": [],
  "deduplicate_across_all_start_urls": true,
  "max_results": 100,
  "maxConcurrency": 10,
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

## `detailed` (type: `string`):

No description

## `pricing` (type: `string`):

No description

# 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 = {
    "start_urls": [
        {
            "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("trev0n/sinsay-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 = { "start_urls": [{ "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane" }] }

# Run the Actor and wait for it to finish
run = client.actor("trev0n/sinsay-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 '{
  "start_urls": [
    {
      "url": "https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane"
    }
  ]
}' |
apify call trev0n/sinsay-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Sinsay Scraper",
        "description": "Fast scraper for Sinsay.com product data. Extract prices, variants, stock levels, images, and ratings from any Sinsay market.",
        "version": "0.0",
        "x-build-id": "Ukq4Z0iWrQticj8Dw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/trev0n~sinsay-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-trev0n-sinsay-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/trev0n~sinsay-scraper/runs": {
            "post": {
                "operationId": "runs-sync-trev0n-sinsay-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/trev0n~sinsay-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-trev0n-sinsay-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",
                "required": [
                    "start_urls"
                ],
                "properties": {
                    "start_urls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "List of Sinsay category/listing URLs to scrape. Must be category or subcategory pages (e.g., https://www.sinsay.com/pl/pl/kobieta/najchetniej-kupowane). Homepage URLs are not supported - use direct category URLs instead.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "category_filter": {
                        "title": "Category Filter",
                        "type": "array",
                        "description": "Filter by main categories (e.g., ['kobieta', 'mezczyzna', 'dzieci']). Leave empty to scrape all categories.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "subcategory_filter": {
                        "title": "Subcategory Filter",
                        "type": "array",
                        "description": "Filter by subcategories (e.g., ['najchetniej-kupowane', 'odziez', 'buty']). Leave empty to scrape all subcategories.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "product_seo_keyword_filter": {
                        "title": "Product Keyword Filter",
                        "type": "array",
                        "description": "Filter by product SEO keywords in URL (e.g., ['t-shirt', 'jeans']). Leave empty to scrape all products.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "deduplicate_across_all_start_urls": {
                        "title": "Deduplicate Products",
                        "type": "boolean",
                        "description": "If true, prevents the same product from appearing multiple times when scraping multiple categories or URLs.",
                        "default": true
                    },
                    "max_results": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of products to scrape. Set to 0 for unlimited.",
                        "default": 100
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum number of pages to process in parallel. Higher values = faster scraping but more memory usage. Recommended: 10-15 for API scraping.",
                        "default": 10
                    },
                    "maxRequestRetries": {
                        "title": "Max Request Retries",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "How many times to retry failed requests.",
                        "default": 3
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings to avoid blocking. Residential proxies recommended for best results.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
