# Lidl.es Products, Weekly Offers, Prices & Reviews Scraper (`abotapi/lidl-es-scraper`) Actor

Scrape Lidl.es grocery and non-food products across weekly offers, tools, home, garden, kitchen, fashion, kids, sport and more. Search by keyword, department or URL. Extract prices, was-prices, discounts, package formats, images, ratings and full shopper reviews.

- **URL**: https://apify.com/abotapi/lidl-es-scraper.md
- **Developed by:** [Abot API](https://apify.com/abotapi) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 product 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

## Lidl Spain Scraper

Pull product data from Lidl.es, spanning both the grocery/supermarket weekly-offer range and Lidl's "bazaar" (non-food) catalogue -- tools, home & garden, kitchen, fashion, baby & kids, sport & leisure. Search by keyword and/or department with brand, price, rating and weekly-offer filters, or paste product/search/category links directly. Every record includes the current price, a genuine strike-through was-price and discount % whenever a product is genuinely on offer, package format, images, and the site's own shopper rating and review feed.

### Why This Scraper?

- **Covers both catalogues.** Lidl.es sells grocery weekly offers (fresh produce, pantry, drinks) and a much larger "bazaar" non-food range (tools, home, garden, fashion, toys) through the same storefront -- this scraper reaches both.
- **Was-price captured only when it's real.** Lidl runs genuine rotating weekly offers with a real prior price -- this scraper reads the site's own strike-through price object per item and only ever sets a was-price/discount when it's genuinely populated and higher than the current price. Full-price items simply get `null`, never a fabricated markdown.
- **Real shopper reviews, not a third-party vendor.** Ratings and reviews come from Lidl's own on-site review feed (average, histogram, per-review text/author/votes), included on request.
- **Package format + a derived unit price.** The package size/format Lidl itself displays (e.g. "750g", or "A granel" for loose/bulk items) is always included; a €/kg or €/L unit price is derived only when the package is an unambiguous single weight/volume -- never guessed for a bulk or multi-pack item.
- **Two ways in.** Keyword + department browse with brand/price/rating/weekly-offer filters and sort, or paste any product, search, or department link.
- **Optional export to your apps.** Send results into Notion, Linear, Airtable, or any Apify MCP connector alongside the dataset.

### A note on product detail and scope

Lidl's own product-card data (price, was-price, package format, images, description, rating summary) is already included by default. The one genuinely additive per-product fetch is the site's own **full review feed** (rating breakdown, star histogram, per-review text/author/votes) -- turned on with `fetchDetails`. Lidl.es does not expose a detailed spec table (materials/dimensions/technical data) anywhere on the site itself, so this scraper does not claim one; it surfaces the site's own short product description and structured badges instead. Lidl.es also does not key its catalogue or prices by store/postal code the way some Spanish grocers do, so there is no region selector.

### Data You Get

| Field | Example value |
|---|---|
| productId / title | `123456789`, `Sample Cordless Drill 20V` |
| brand / category / categoryPath | `SAMPLEBRAND`, `Power tools`, `["DIY & garden", "Workshop", "Power tools"]` |
| productUrl / images | `https://www.lidl.es/p/sample-product/p123456789`, full-resolution image list |
| price / currency | `39.99`, `EUR` |
| wasPrice / discountAmount / discountPercent | `49.99`, `10.00`, `20.0` (only when genuinely on offer) |
| isOnSpecial / promoLabel | `true`, `"Megadescuento"` |
| packageFormat / unitPrice / unitOfMeasure | `"750g"`, `3.99`, `"€/kg"` (unit price only for an unambiguous single pack) |
| onlineAvailable / inStoreOnly / stockAvailability | `true`, `false`, site's own stock label |
| averageRating / reviewCount | `4.6`, `823` |
| description / badges | short product description text, `["Top rated"]` |
| internalArticleNumbers | Lidl's own internal article number(s) |
| reviews | `{}` by default, full feed with `fetchDetails: true` |

> Sample shape: values above are illustrative placeholders, not from a live product.

### How to Use

**1. Keyword + department search (default):**
```json
{
  "mode": "search",
  "searchTerm": "taladro",
  "category": "bricolaje-jardin",
  "maxItems": 20
}
````

**2. Weekly offers only, biggest discount first:**

```json
{
  "mode": "search",
  "specialsOnly": true,
  "sortBy": "BIGGEST_DISCOUNT",
  "maxItems": 50
}
```

**3. One brand within a department, with full shopper reviews:**

```json
{
  "mode": "search",
  "category": "bricolaje-jardin",
  "brand": "SAMPLEBRAND",
  "fetchDetails": true,
  "maxItems": 20
}
```

**4. Paste product / search / department links directly:**

```json
{
  "mode": "url",
  "urls": [
    "https://www.lidl.es/p/sample-product/p123456789",
    "https://www.lidl.es/h/fruta-y-verdura/h10071012"
  ],
  "maxItems": 50
}
```

### Input Parameters

| Parameter | Type | Description |
|---|---|---|
| `mode` | string | `search` or `url`. |
| `searchTerm` | string | Keyword against Lidl's own search index (search mode only). |
| `category` | string | One of Lidl's real top-level departments (search mode only); empty searches the whole catalogue. |
| `brand` | string | Exact brand name to keep, e.g. as shown on the site (search mode only). |
| `specialsOnly` | boolean | Keep only products on a genuine current weekly offer (search mode only). |
| `minPrice` / `maxPrice` | number | EUR price band to keep (search mode only). |
| `minRating` | number | Minimum shopper rating (1-5) to keep (search mode only). |
| `sortBy` | string | `RELEVANCE`, `PRICE_ASC`, `PRICE_DESC`, `NEWEST`, `TOP_RATED`, `BESTSELLERS`, or `BIGGEST_DISCOUNT` (search mode only). |
| `urls` | array | Product, search/specials, or department listing URLs to scrape (url mode only). |
| `fetchDetails` | boolean | Fetch the site's own full review feed (rating breakdown, star histogram, per-review text). Always on for a pasted product URL. |
| `maxPages` | integer | Cap on search result pages fetched; empty = unlimited. |
| `maxItems` | integer | Cap on total products returned; `0` = unlimited. |
| `proxy` | object | Apify Proxy configuration used to route requests. The default works out of the box. |
| `mcpConnectors` | array | Optional MCP connectors to export results into (Notion, Linear, Airtable, Apify). |
| `notionParentPageUrl` | string | Notion connector only: page under which item pages are created. |
| `maxNotifyListings` | integer | Cap on items exported to each connector per run. Does not affect the dataset. |

### Output Example

```json
{
  "productId": "123456789",
  "title": "Sample Cordless Drill 20V",
  "brand": "SAMPLEBRAND",
  "categoryPath": ["DIY & garden", "Workshop", "Power tools"],
  "category": "Power tools",
  "productUrl": "https://www.lidl.es/p/sample-product/p123456789",
  "price": 39.99,
  "currency": "EUR",
  "wasPrice": 49.99,
  "discountAmount": 10.0,
  "discountPercent": 20.0,
  "isOnSpecial": true,
  "promoLabel": "Megadescuento",
  "packageFormat": null,
  "unitPrice": null,
  "unitOfMeasure": null,
  "hasVat": true,
  "onlineAvailable": true,
  "inStoreOnly": false,
  "stockAvailability": "In stock",
  "images": ["https://www.lidl.es/assets/sample.jpg"],
  "internalArticleNumbers": ["555123"],
  "description": "Sample short product description as shown on the site.",
  "badges": ["Top rated"],
  "averageRating": 4.6,
  "reviewCount": 823,
  "recommendedYes": 780,
  "recommendedNo": 15,
  "reviews": {
    "averageRating": 4.6,
    "totalReviewCount": 823,
    "recommendedYes": 780,
    "recommendedNo": 15,
    "starHistogram": { "1": 8, "2": 10, "3": 30, "4": 150, "5": 625 },
    "items": [
      { "stars": 5, "title": "Great value", "text": "Sample review text.", "author": "Sample Shopper", "recommended": true, "votesUp": 4, "votesDown": 0 }
    ]
  }
}
```

> Sample shape: values above are illustrative placeholders, not from a live product.

### A note on unit pricing and was-price

The package price (`price`) comes straight from Lidl's own product data. `unitPrice`/`unitOfMeasure` (€/kg or €/L) are only ever derived when the package format is an unambiguous single weight/volume (e.g. "750g") -- never for a "A granel" (loose/bulk, sold by weight at checkout) item, and never for a multi-pack, where dividing by the printed pack size would inflate or deflate the true per-unit price. `wasPrice`/`discountAmount`/`discountPercent`/`isOnSpecial` are only ever set when Lidl's own strike-through price field is genuinely populated and higher than the current price -- most full-price catalogue items simply carry no was-price, and this scraper reports that honestly rather than inventing one.

### Send results into your apps (MCP connectors)

Optionally pipe results into the apps you already use through Model Context Protocol (MCP) connectors. Authorize a connector once under Apify, Settings, Integrations, then select it in the `mcpConnectors` field. Each connector receives a condensed, human-readable summary per product (title plus key fields), while the complete record always stays in the Apify dataset. For Notion, set `notionParentPageUrl` to the page the item pages should be created under, and use `maxNotifyListings` to cap how many items are exported per connector per run. Supported connectors: Notion, Linear, Airtable, and Apify. Leave the field empty to skip; it never changes the dataset output.

# Actor input Schema

## `mode` (type: `string`):

'search' browses the Lidl.es catalogue (grocery weekly offers + the bazaar/non-food range) by keyword, department, brand and filters. 'url' scrapes any product, search/specials, or category link you paste.

## `searchTerm` (type: `string`):

Free-text keyword against Lidl's own search index, e.g. 'bateria' or 'sandia'. Leave empty (with a Department set) to browse a whole department.

## `category` (type: `string`):

Narrow to one of Lidl.es's real top-level departments, spanning both the bazaar/non-food weekly range and grocery. Leave as 'Any' to search across the whole catalogue.

## `brand` (type: `string`):

Only return products from this brand, exactly as Lidl shows it (e.g. 'PARKSIDE', 'SILVERCREST', 'CRIVIT'). Leave empty for all brands.

## `specialsOnly` (type: `boolean`):

Narrows to Lidl's own genuine weekly-offer markdowns (real strike-through was-price + discount %) -- the same set as the site's own 'Descuentos' page.

## `minPrice` (type: `number`):

Only return products priced at or above this amount, in euros.

## `maxPrice` (type: `number`):

Only return products priced at or below this amount, in euros.

## `minRating` (type: `number`):

Only return products with a shopper rating at or above this value.

## `sortBy` (type: `string`):

Sort order for the results, using Lidl's own real sort options.

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

Paste one or more Lidl.es product pages (lidl.es/p/<slug>/p<id>), search/specials pages (lidl.es/q/query/<term>), or department listing pages (lidl.es/h/<slug>/h<id> or lidl.es/c/<slug>/s<id>). Filter fields above are ignored in this mode.

## `fetchDetails` (type: `boolean`):

Adds the site's own full review feed (rating breakdown, star histogram, per-review text/author/votes) for each product. Current price, was-price, unit price, images, description and the rating summary are already included without this toggle. Always on for a pasted product URL.

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

Stop after fetching this many result pages. Leave empty for no limit -- the run stops at Max products total.

## `maxItems` (type: `integer`):

Hard cap on total products returned across the run. 0 = unlimited (still bounded by Max search pages).

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

Apify Proxy configuration used to route requests. The default works out of the box.

## `mcpConnectors` (type: `array`):

Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify -> Settings -> Integrations, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON; the complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com).

## `notionParentPageUrl` (type: `string`):

URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors.

## `maxNotifyListings` (type: `integer`):

Cap on items written to each connector per run. Does not affect the dataset.

## Actor input object example

```json
{
  "mode": "search",
  "searchTerm": "bateria",
  "category": "",
  "specialsOnly": false,
  "sortBy": "RELEVANCE",
  "urls": [
    "https://www.lidl.es/p/parkside-bateria-20v-4-ah-pap-204-a1/p100407757"
  ],
  "fetchDetails": false,
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

# Actor output Schema

## `overview` (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 = {
    "mode": "search",
    "searchTerm": "bateria",
    "urls": [
        "https://www.lidl.es/p/parkside-bateria-20v-4-ah-pap-204-a1/p100407757"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/lidl-es-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 = {
    "mode": "search",
    "searchTerm": "bateria",
    "urls": ["https://www.lidl.es/p/parkside-bateria-20v-4-ah-pap-204-a1/p100407757"],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/lidl-es-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 '{
  "mode": "search",
  "searchTerm": "bateria",
  "urls": [
    "https://www.lidl.es/p/parkside-bateria-20v-4-ah-pap-204-a1/p100407757"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call abotapi/lidl-es-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Lidl.es Products, Weekly Offers, Prices & Reviews Scraper",
        "description": "Scrape Lidl.es grocery and non-food products across weekly offers, tools, home, garden, kitchen, fashion, kids, sport and more. Search by keyword, department or URL. Extract prices, was-prices, discounts, package formats, images, ratings and full shopper reviews.",
        "version": "1.0",
        "x-build-id": "pycdrKdGIQwPLDTNg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~lidl-es-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-lidl-es-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/abotapi~lidl-es-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-lidl-es-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/abotapi~lidl-es-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-lidl-es-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": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "'search' browses the Lidl.es catalogue (grocery weekly offers + the bazaar/non-food range) by keyword, department, brand and filters. 'url' scrapes any product, search/specials, or category link you paste.",
                        "default": "search"
                    },
                    "searchTerm": {
                        "title": "Search keyword",
                        "type": "string",
                        "description": "Free-text keyword against Lidl's own search index, e.g. 'bateria' or 'sandia'. Leave empty (with a Department set) to browse a whole department."
                    },
                    "category": {
                        "title": "Department",
                        "enum": [
                            "",
                            "bricolaje-jardin",
                            "cocina-hogar",
                            "hogar-decoracion",
                            "deporte-tiempo-libre",
                            "moda-accesorios",
                            "bebe-infantil-juguetes",
                            "alimentacion"
                        ],
                        "type": "string",
                        "description": "Narrow to one of Lidl.es's real top-level departments, spanning both the bazaar/non-food weekly range and grocery. Leave as 'Any' to search across the whole catalogue.",
                        "default": ""
                    },
                    "brand": {
                        "title": "Brand",
                        "type": "string",
                        "description": "Only return products from this brand, exactly as Lidl shows it (e.g. 'PARKSIDE', 'SILVERCREST', 'CRIVIT'). Leave empty for all brands."
                    },
                    "specialsOnly": {
                        "title": "Weekly offers only",
                        "type": "boolean",
                        "description": "Narrows to Lidl's own genuine weekly-offer markdowns (real strike-through was-price + discount %) -- the same set as the site's own 'Descuentos' page.",
                        "default": false
                    },
                    "minPrice": {
                        "title": "Minimum price (EUR)",
                        "type": "number",
                        "description": "Only return products priced at or above this amount, in euros."
                    },
                    "maxPrice": {
                        "title": "Maximum price (EUR)",
                        "type": "number",
                        "description": "Only return products priced at or below this amount, in euros."
                    },
                    "minRating": {
                        "title": "Minimum rating (1-5)",
                        "type": "number",
                        "description": "Only return products with a shopper rating at or above this value."
                    },
                    "sortBy": {
                        "title": "Sort order",
                        "enum": [
                            "RELEVANCE",
                            "PRICE_ASC",
                            "PRICE_DESC",
                            "NEWEST",
                            "TOP_RATED",
                            "BESTSELLERS",
                            "BIGGEST_DISCOUNT"
                        ],
                        "type": "string",
                        "description": "Sort order for the results, using Lidl's own real sort options.",
                        "default": "RELEVANCE"
                    },
                    "urls": {
                        "title": "URLs to scrape",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Paste one or more Lidl.es product pages (lidl.es/p/<slug>/p<id>), search/specials pages (lidl.es/q/query/<term>), or department listing pages (lidl.es/h/<slug>/h<id> or lidl.es/c/<slug>/s<id>). Filter fields above are ignored in this mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "fetchDetails": {
                        "title": "Fetch shopper reviews",
                        "type": "boolean",
                        "description": "Adds the site's own full review feed (rating breakdown, star histogram, per-review text/author/votes) for each product. Current price, was-price, unit price, images, description and the rating summary are already included without this toggle. Always on for a pasted product URL.",
                        "default": false
                    },
                    "maxPages": {
                        "title": "Max search pages",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Stop after fetching this many result pages. Leave empty for no limit -- the run stops at Max products total."
                    },
                    "maxItems": {
                        "title": "Max products total",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cap on total products returned across the run. 0 = unlimited (still bounded by Max search pages).",
                        "default": 20
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy configuration used to route requests. The default works out of the box.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "mcpConnectors": {
                        "title": "Pipe results into your apps (optional)",
                        "type": "array",
                        "description": "Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify -> Settings -> Integrations, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON; the complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com)."
                    },
                    "notionParentPageUrl": {
                        "title": "Notion parent page (Notion connector only)",
                        "type": "string",
                        "description": "URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors."
                    },
                    "maxNotifyListings": {
                        "title": "Max items to export per connector",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Cap on items written to each connector per run. Does not affect the dataset.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
