# Extract a bol.com product page by URL

**Use case:** 

Extract one public bol.com product page with EAN, current price, availability, seller offers, rating, and review samples.

## Input

```json
{
  "queries": [],
  "startUrls": [
    {
      "url": "https://www.bol.com/nl/nl/p/lenovo-ideapad-slim-3-16arp10-laptop-16-inch-ryzen-7-16gb-1tb/9300000251047023/"
    }
  ],
  "marketplace": "NL",
  "maxItems": 1,
  "includeDetails": true,
  "maxReviews": 6
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "number"
  },
  "ean": {
    "label": "EAN",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [bol.com Products, Offers & Reviews Scraper](https://apify.com/automation-lab/bol-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bol-com-scraper) to learn more, explore other use cases, and run it yourself.