# Bol.com Electric Kettle Data Extraction API

**Use case:** 

A ready-to-run example that searches Bol.com product listings for electric kettle in Netherlands, with normalized fields on each returned row.

## Input

```json
{
  "keyword": "electric kettle",
  "country": "Netherlands",
  "max_results": 50,
  "platforms": [
    "Bol.com"
  ]
}
```

## Output

```json
{
  "image_url": {
    "label": "Image URL",
    "format": "string"
  },
  "image_urls": {
    "label": "Image Urls",
    "format": "array"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "badges": {
    "label": "Badges",
    "format": "array"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "breadcrumbs": {
    "label": "Breadcrumbs",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "features": {
    "label": "Features",
    "format": "array"
  },
  "product_id": {
    "label": "Product ID",
    "format": "string"
  },
  "sku": {
    "label": "SKU",
    "format": "string"
  },
  "gtin": {
    "label": "GTIN",
    "format": "string"
  },
  "mpn": {
    "label": "MPN",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "specifications": {
    "label": "Specifications",
    "format": "object"
  },
  "manufacturer": {
    "label": "Manufacturer",
    "format": "string"
  },
  "origin": {
    "label": "Origin",
    "format": "string"
  },
  "energy_class": {
    "label": "Energy Class",
    "format": "string"
  },
  "included": {
    "label": "Included",
    "format": "array"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "release_date": {
    "label": "Release Date",
    "format": "string"
  },
  "variants": {
    "label": "Variants",
    "format": "array"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "was_price": {
    "label": "Was Price",
    "format": "number"
  },
  "unit_price": {
    "label": "Unit Price",
    "format": "object"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "price_text": {
    "label": "Price Text",
    "format": "string"
  },
  "discount_pct": {
    "label": "Discount Pct",
    "format": "number"
  },
  "discount_text": {
    "label": "Discount Text",
    "format": "string"
  },
  "promo_text": {
    "label": "Promo Text",
    "format": "string"
  },
  "installment_text": {
    "label": "Installment Text",
    "format": "string"
  },
  "stock_status": {
    "label": "Stock Status",
    "format": "string"
  },
  "stock_text": {
    "label": "Stock Text",
    "format": "string"
  },
  "sales_text": {
    "label": "Sales Text",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "seller_url": {
    "label": "Seller URL",
    "format": "string"
  },
  "seller_score": {
    "label": "Seller Score",
    "format": "number"
  },
  "shipping_text": {
    "label": "Shipping Text",
    "format": "string"
  },
  "shipping_cost": {
    "label": "Shipping Cost",
    "format": "number"
  },
  "delivery_text": {
    "label": "Delivery Text",
    "format": "string"
  },
  "pickup_text": {
    "label": "Pickup Text",
    "format": "string"
  },
  "return_text": {
    "label": "Return Text",
    "format": "string"
  },
  "return_days": {
    "label": "Return Days",
    "format": "integer"
  },
  "warranty_text": {
    "label": "Warranty Text",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "site": {
    "label": "Site",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "product_url": {
    "label": "Product URL",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "bestseller_rank": {
    "label": "Bestseller Rank",
    "format": "integer"
  },
  "is_sponsored": {
    "label": "Is Sponsored",
    "format": "boolean"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bol Product Scraper](https://apify.com/agentx/bol-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/agentx/bol-product-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/agentx/bol-product-scraper.md

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`).
