# Allegro Product Scraper: Prices, Sellers & Details (`fetchfinch/allegro-product-scraper`) Actor

\[ Just 💰 $1.10 / 1K] Extract structured Allegro 🇵🇱🇨🇿🇸🇰 product data through Bright Data Web Unlocker. Collect search results, category pages, seller storefronts, and direct offers with prices, sellers, ratings, delivery, images, parameters, and optional details with request-budget controls.

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

## Pricing

$1.10 / 1,000 product scrapeds

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

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

## What's an Apify Actor?

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

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

## How to integrate an Actor?

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

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

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

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

# README

## Allegro Product Scraper: Prices, Sellers & Details

### Scrape Allegro Products, Prices & Seller Data

![Structured data](https://img.shields.io/badge/Structured%20data-ready-00A98F)
![Output](https://img.shields.io/badge/Output-JSON%20dataset-3178C6)
![Marketplaces](https://img.shields.io/badge/Marketplaces-PL%20%7C%20CZ%20%7C%20SK-F39C12)
![Browser setup](https://img.shields.io/badge/Browser%20setup-not%20required-43A047)

Collect structured product data from Allegro without managing browser automation or scraping infrastructure yourself. The Actor turns product cards, offer pages, category listings, and seller storefronts into clean dataset records.

### What you can collect

- Product and offer URLs, titles, IDs, prices, currencies, and original prices
- Seller names, seller IDs, positive-feedback ratings, and seller badges
- Product ratings, review counts, recent sales, availability, and promotions
- Delivery price, free-delivery status, product images, and visible parameters
- Search results, category or listing pages, seller storefronts, and direct offers

### Quick start

Run the Actor with a small request budget first:

```json
{
  "target": "search",
  "searchTerms": ["iphone 15"],
  "marketplace": "pl",
  "maxItems": 20,
  "maxPages": 1,
  "maxRequests": 1,
  "includeDetails": false
}
```

The results are written to the default Apify dataset. You can export them as JSON, CSV, Excel, or use the Apify API and integrations.

### Pricing

The launch price is **$1.10 per 1,000 product records** saved to the default dataset. Runs with no saved products do not create a product-record charge. Use `maxItems`, `maxPages`, and `maxRequests` to keep each run predictable.

### Supported targets

| Target | Use it for | Main input |
| --- | --- | --- |
| `search` | Keyword searches | `searchTerms` or `query` |
| `listingPages` | Category and listing pages | `listingUrls` |
| `sellerStorefronts` | A seller's available products | `sellerUrls` |
| `offers` | Individual product or offer pages | `offerUrls` |

Direct Allegro URLs can also be supplied through `startUrls` or `urls` for compatibility with other Actors.

### Useful examples

#### Search with filters

```json
{
  "target": "search",
  "searchTerms": ["laptop"],
  "marketplace": "pl",
  "minPrice": 500,
  "maxPrice": 1500,
  "sort": "price-asc",
  "maxItems": 25,
  "maxPages": 1,
  "maxRequests": 1
}
```

#### Scrape a seller storefront

```json
{
  "target": "sellerStorefronts",
  "sellerUrls": [
    { "url": "https://allegro.pl/uzytkownik/MediaMarktPolska/sprzedaje" }
  ],
  "maxItems": 25,
  "maxPages": 1,
  "maxRequests": 1
}
```

#### Scrape direct offers and include details

```json
{
  "target": "offers",
  "offerUrls": [
    { "url": "https://allegro.pl/produkt/example?offerId=123456789" }
  ],
  "maxItems": 5,
  "maxRequests": 5,
  "includeDetails": true
}
```

### Run controls

- `maxRequests` limits the number of page requests used during the run.
- `maxPages` controls pagination.
- `maxItems` limits the total number of products returned.
- `maxItemsPerSource` limits products contributed by each search or URL.
- `includeDetails` or `scrapeProductDetails` adds detailed product information for returned offers.

For a low-cost test, use one source, `maxPages: 1`, `maxRequests: 1`, and `includeDetails: false`.

### Input reference

The most commonly used fields are:

- `marketplace`: `pl`, `cz`, or `sk`.
- `searchTerms`: up to 10 keyword phrases.
- `query`: one legacy-compatible search phrase.
- `listingUrls`, `sellerUrls`, `offerUrls`: arrays of `{ "url": "..." }` objects.
- `condition`: `all`, `new`, or `used`.
- `sort`: `relevance`, `price-asc`, `price-desc`, `popularity`, or `newest`.
- `minPrice` and `maxPrice`: local price filters.
- `debug`: logs compact diagnostics when a page returns no products; it does not log the full page.

The Actor's input schema contains the complete field descriptions and validation rules.

### Output

Each dataset item is a normalized product record. Depending on what Allegro exposes, it can include:

```json
{
  "offerId": "17164554013",
  "title": "Smartfon Apple iPhone 15 6 GB / 128 GB 5G czarny",
  "url": "https://allegro.pl/produkt/example?offerId=17164554013",
  "price": 2999,
  "currency": "PLN",
  "sellerName": "MediaMarktPolska",
  "sellerRating": 97.4,
  "rating": 4.9,
  "reviewCount": 824,
  "deliveryPrice": 0,
  "freeDelivery": true,
  "images": ["https://a.allegroimg.com/example"],
  "parameters": { "Kolor": ["czarny"] },
  "source": { "type": "search", "query": "iphone 15" },
  "scrapedAt": "2026-09-24T15:53:26.438Z"
}
```

Fields that Allegro does not expose for a particular item are returned as `null`, an empty array, or omitted from nested source data as appropriate.

# Actor input Schema

## `target` (type: `string`):

Choose one Allegro surface. Legacy query/startUrls/urls inputs remain supported.

## `query` (type: `string`):

One Allegro search phrase. Use startUrls or urls for direct pages and offer URLs.

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

Additional Allegro search phrases. Keep this list small on the Bright Data free tier.

## `searchTerms` (type: `array`):

Keyword searches used when Target is Search.

## `listingUrls` (type: `array`):

Public Allegro category or listing-page URLs.

## `sellerUrls` (type: `array`):

Public Allegro seller storefront URLs.

## `offerUrls` (type: `array`):

Public Allegro offer or product URLs.

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

Allegro search, category, seller, or offer URLs.

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

Alternative simple list of Allegro URLs.

## `maxItemsPerSource` (type: `integer`):

Small by default to protect Bright Data credits. Limits products contributed by each search, listing, seller, or offer source.

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

Global product limit across all submitted terms and URLs.

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

Maximum listing pages to fetch per source. Each page consumes one Bright Data request; keep this at one on the free tier.

## `maxRequests` (type: `integer`):

Hard cap for the whole run, including optional detail requests.

## `scrapeProductDetails` (type: `boolean`):

Adds one Bright Data request per returned offer. Disabled by default.

## `includeDetails` (type: `boolean`):

Alias for scrapeProductDetails for compatibility with other Allegro Actors.

## `marketplace` (type: `string`):

Marketplace used to build keyword search URLs.

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

Only return offers at or above this price.

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

Only return offers at or below this price.

## `condition` (type: `string`):

Filter offers by new or used condition.

## `sort` (type: `string`):

Order results by relevance, price, popularity, or newest listing.

## `brightDataZone` (type: `string`):

Optional. Defaults to BRIGHTDATA\_UNLOCKER\_ZONE, BRIGHTDATA\_ZONE, or web\_unlocker1.

## `country` (type: `string`):

ISO country code used by Bright Data. Keep pl for Allegro Poland pricing.

## `debug` (type: `boolean`):

Logs response size, title, and detected Allegro markers when a source returns no products. Does not log the full page.

## Actor input object example

```json
{
  "target": "search",
  "maxItemsPerSource": 5,
  "maxItems": 5,
  "maxPages": 1,
  "maxRequests": 5,
  "scrapeProductDetails": false,
  "includeDetails": false,
  "marketplace": "pl",
  "condition": "all",
  "sort": "relevance",
  "country": "pl",
  "debug": false
}
```

# Actor output Schema

## `results` (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 = {};

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

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

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

```

## Python example

```python
from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {}

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

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

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

```

## CLI example

```bash
echo '{}' |
apify call fetchfinch/allegro-product-scraper --silent --output-dataset

```

## MCP server setup

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

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

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/tQ3dE5ZYgzFAoBZFt/builds/7Cg3glv8GHoWm70IG/openapi.json
