# Komplett Scraper (`lexis-solutions/komplett-scraper`) Actor

Scrape Komplett.se, Komplett.no, Komplett.dk, and Komplett.fi for detailed product data, including prices, stock, images, and full specifications from search, category, and product pages, ideal for Nordic e-commerce analysis.

- **URL**: https://apify.com/lexis-solutions/komplett-scraper.md
- **Developed by:** [Lexis Solutions](https://apify.com/lexis-solutions) (community)
- **Categories:** E-commerce, AI, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$35.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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## Komplett Scraper

![Komplett Scraper](https://i.ibb.co/q3vj6242/Screenshot-2026-01-21-at-10-14-16-AM.png)

Komplett Scraper is an Apify Actor designed to extract comprehensive product data from the Komplett e-commerce websites across the Nordic regions: Sweden, Norway, Denmark, and Finland.

### Features

- **Multi-Country Support**: Supports Komplett.se, Komplett.no, Komplett.dk, and Komplett.fi.
- **Versatile Input**: Handles search result URLs, category listing URLs, and individual product pages.
- **Rich Data Extraction**: Captures product titles, IDs, brands, descriptions, high-quality images, pricing, stock status, and full technical specifications.
- **Advanced Control**: Limit the number of items scraped per URL and configure proxy settings to avoid bot detection.

### Input Parameters

The Actor accepts the following input parameters:

- **Start URLs** (`startUrls`): A list of Komplett URLs to start scraping from. These can be search pages, category pages, or product detail pages.
- **Max Items** (`maxItems`): The maximum number of products to scrape for each provided `startUrl`.
- **Proxy Configuration** (`proxyConfiguration`): Proxy settings to ensure stable scraping. Using Residential Proxies is recommended for large-scale operations.

#### Input Example

```json
{
  "startUrls": [
    { "url": "https://www.komplett.se/search?q=phone" },
    { "url": "https://www.komplett.no/category/10412/datautrustyr/pc-komponenter/skjermkort" }
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

### Output Data

The scraper pushes results to a dataset where each item represents a product with the following structure:

| Field | Description |
| --- | --- |
| `url` | The URL of the product page. |
| `id` | The product's material number/SKU. |
| `title` | The full name of the product. |
| `brand` | The manufacturer or brand name. |
| `price` | The current numeric price. |
| `currency` | The currency code (e.g., SEK, NOK). |
| `inStock` | Boolean indicating if the product is currently in stock. |
| `images` | An array of high-quality product image URLs. |
| `specifications` | A key-value object containing all technical specs from the product page. |
| `description` | A brief summary of the product features. |

#### Output Example

```json
{
  "url": "https://www.komplett.se/product/1328713/mobil-tablets-klockor/mobiltelefoner/iphone-17-pro-256gb-djupblaa",
  "id": "1328713",
  "title": "iPhone 17 Pro 256GB (djupblå)",
  "description": "Smartphone, 6,3\" Super Retina XDR-skärm, 48+48+48MP kamera, IP68, 5G",
  "brand": "APPLE",
  "price": 14984,
  "currency": "SEK",
  "inStock": true,
  "images": [
    "https://www.komplett.se/img/p/1200/1328713.jpg",
    "https://www.komplett.se/img/p/1200/1328713_1.jpg"
  ],
  "specifications": {
    "Produktlinje": "Apple iPhone",
    "Modell": "17 Pro",
    "Producentens garanti (månader)": "12",
    "EAN": "195950627572",
    "Operativsystemfamilj": "iOS",
    "Batteriteknik": "Litiumjon"
  }
}
```

👀 **p.s.**

Got feedback or need an extension?

Lexis Solutions is a [certified Apify Partner](https://apify.com/partners/find). We can help you with custom solutions or data extraction projects.

Contact us over [Email](mailto:scraping@lexis.solutions) or [LinkedIn](https://www.linkedin.com/company/lexis-solutions)

### Support Our Work 💝

If you're happy with our work and scrapers, you're welcome to leave us a company review [here](https://apify.com/partners/find/lexis-solutions/review) and leave a review for the scrapers you're subscribed to. It will take you less than a minute but it will mean a lot to us!

Image Credit: https://www.komplett.se/

# Actor input Schema

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

URLs to start crawling from (Search, Category, or Product pages).

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

Maximum number of items to scrape per start URL.

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

Proxy settings for the scraper.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.komplett.se/search?q=phone"
    }
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "startUrls": [
        {
            "url": "https://www.komplett.se/search?q=phone"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lexis-solutions/komplett-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 = { "startUrls": [{ "url": "https://www.komplett.se/search?q=phone" }] }

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/komplett-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 '{
  "startUrls": [
    {
      "url": "https://www.komplett.se/search?q=phone"
    }
  ]
}' |
apify call lexis-solutions/komplett-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/preb2ruClRzUI8Tpv/builds/72eAc4ZO7xPOL45yn/openapi.json
