# JYSK Sweden Scraper — Furniture & Home Products (`studio-amba/jysk-se-scraper`) Actor

Scrape products, prices, ratings, and reviews from JYSK.se, Sweden's furniture and home products retailer. Supports keyword search, category browsing, and full catalog via sitemap. Prices in SEK, content in Swedish.

- **URL**: https://apify.com/studio-amba/jysk-se-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 result 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/platform/actors/running/actors-in-store#pay-per-event

## 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

## JYSK Sweden Scraper

Scrapes furniture, mattresses, beds, and home goods from jysk.se — JYSK's
Swedish webshop. Discovers products via JYSK's XML sitemap (or a category URL /
keyword) and reads page-level JSON-LD for detailed, structured product data.
Prices are returned in SEK and content is in Swedish.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `searchQuery` | String | No | Search term (e.g., "säng", "soffa", "madrass") |
| `categoryUrl` | String | No | JYSK category URL (e.g. `https://jysk.se/sovrum/sangar`) |
| `maxResults` | Integer | No | Max products (default: 100) |
| `proxyConfiguration` | Object | No | Proxy settings (residential, country SE recommended) |

Without input, the scraper fetches `sitemap.xml` and crawls product pages from
there. The default search query is `säng` (bed).

### Output

| Field | Type | Example |
|-------|------|---------|
| `name` | String | `"Sängbord ILBRO 1 låda natur"` |
| `brand` | String | `"JYSK"` |
| `price` | Number | `449.00` |
| `originalPrice` | Number | `599.00` |
| `currency` | String | `"SEK"` |
| `ean` | String | `"5709132891234"` |
| `sku` | String | `"3616931"` |
| `inStock` | Boolean | `true` |
| `rating` | Number | `3.4` |
| `reviewCount` | Number | `405` |
| `imageUrl` | String | Product photo |
| `imageUrls` | Array | Gallery images |
| `description` | String | Product description |
| `category` | String | `"Sängbord"` |
| `categories` | Array | `["Sovrum", "Sängbord"]` |
| `language` | String | `"sv"` |

### Three discovery strategies

1. **Sitemap** (default): Parses `sitemap.xml`, filters for product URLs, and
   scrapes them. The keyword filter is diacritic-insensitive, so `säng` matches
   Swedish URL slugs that transliterate to `sang`.
2. **Category crawl**: Follows product links on a category page (URLs with 3+
   path segments), with pagination.
3. **Search API**: Hits JYSK's internal search endpoint with faceted
   parameters to seed product URLs.

Product pages are enriched beyond JSON-LD: breadcrumb categories, sale prices
from HTML, and online stock indicators are all merged in.

### Cost

About **$0.25 per 1,000 products**.

### Notes

- Swedish JYSK site. Content in Swedish, prices in SEK.
- JYSK product URLs have at least 3 path segments: `/{category}/{subcategory}/{product-slug}`
- Swedish URL slugs strip diacritics (ä→a, ö→o, å→a). The scraper folds
  accents on both the query and the slug so keyword matching still works.
- Breadcrumb labels like "Startsida" and "Sökresultat" are filtered out.

### Why use JYSK Sweden Scraper

- **Price monitoring** — Track prices, stock, and promotions across JYSK Sweden at scale
- **Competitive intelligence** — Compare your catalog against JYSK pricing and assortment
- **Market research** — Analyze category trends, new arrivals, and rating distributions
- **Lead generation** — Build product datasets for affiliate sites, comparison tools, or feeds
- **No login or cookies required** — Authenticated access not needed; works out of the box

### How to use JYSK Sweden Scraper

1. Open the **Input** tab and provide a search query, category URL, or leave empty for sitemap mode
2. Adjust optional filters such as `maxResults` or proxy settings
3. Click **Start** and wait for the run to complete
4. Download results from the **Output** tab in JSON, CSV, Excel, XML, or HTML
5. Schedule recurring runs from the **Schedule** tab if you need ongoing data

### How to scrape JYSK data

This Actor automates the process of extracting structured product data from
JYSK Sweden. You can run it directly from the Apify console, the Apify API, or
any of the official SDKs (JavaScript, Python). The scraper handles pagination,
retries, and rate limiting so you can focus on the data, not the plumbing.

Typical workflows:

- **One-off export**: paste a category URL or keyword, set `maxResults`, and run
- **Scheduled monitoring**: set a daily cron in the Schedule tab to track prices over time
- **Programmatic integration**: trigger runs from your backend via the Apify API and
  pull the dataset when finished
- **Webhook automation**: receive a callback the moment a run completes and pipe
  the results into Zapier, Make, n8n, BigQuery, or Google Sheets

### Tips for best results

- **Start small** — run with `maxResults: 10` before launching large jobs
- **Use SE residential proxies** — country-scoped residential proxies reduce blocking
- **Throttle on big jobs** — keep `maxConcurrency` modest (5–10) for stability
- **Schedule runs** — daily runs are usually enough for price monitoring
- **Inspect the dataset schema** — the Storage tab shows the full output structure

### FAQ and support

**Is it legal to scrape JYSK?** This Actor extracts publicly available data.
Always review the website's Terms of Service before scraping at scale, and
respect rate limits.

**Why am I getting fewer results than expected?** Some categories have hidden
pagination or load more on scroll. Increase `maxResults` and verify your filters.

**Can I extract data for a single product?** Yes — provide the full product URL
in `categoryUrl` and the scraper will return the matching item.

**The site blocks me — what should I do?** Enable Apify residential proxies
scoped to Sweden (SE) in the input. Datacenter IPs are blocked by many
e-commerce sites.

For issues, feature requests, or bug reports, open a ticket in the Issues tab on
the Actor page or contact support@apify.com. We monitor every actor and ship
fixes quickly when sites change.

# Actor input Schema

## `searchQuery` (type: `string`):

Search for products by keyword (e.g., 'säng', 'soffa', 'madrass'). Filters the JYSK catalog for matching products.

## `categoryUrl` (type: `string`):

A JYSK category page URL to scrape. Example: https://jysk.se/sovrum/sangar. If empty and no search query, scrapes from sitemap.

## `maxResults` (type: `integer`):

Maximum number of products to return.

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

Proxy settings for better reliability.

## Actor input object example

```json
{
  "searchQuery": "säng",
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "SE"
  }
}
```

# 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 = {
    "searchQuery": "säng",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "SE"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/jysk-se-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 = {
    "searchQuery": "säng",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "SE",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/jysk-se-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 '{
  "searchQuery": "säng",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "SE"
  }
}' |
apify call studio-amba/jysk-se-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/r4Ew5UYuD8PgeOOyL/builds/meWIq2o6mvAXXOoN7/openapi.json
