# Kogan.com Scraper | Products, Prices, Stock & Reviews (`abotapi/kogan-com-scraper`) Actor

Scrape Kogan.com products with full details and customer reviews. Search by keyword or paste category/search URLs across the AU, NZ and US stores. Returns price, stock, brand, GTIN, images, ratings, and review text.

- **URL**: https://apify.com/abotapi/kogan-com-scraper.md
- **Developed by:** [Abot API](https://apify.com/abotapi) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Kogan.com Product & Reviews Scraper

Collect products and customer reviews from Kogan.com across the Australia, New Zealand and United States stores. Search by keyword with brand, price and sort filters, or paste category and search URLs directly. Every product comes back as one flat record with price, stock, brand, GTIN, images, category, average rating and, optionally, full review text.

### Why this scraper

- Three stores in one actor: Australia (kogan.com/au), New Zealand (/nz) and United States (/us).
- Two ways to run: keyword search with filters, or paste your own category/search URLs.
- Rich product fields: title, brand, SKU, GTIN, price, currency, availability, condition, category, description and image gallery.
- Specials browsing: pick Kogan's own Hot Deals, Clearance or Smart Savers grid, and get `originalPrice`/`discountPercent`/`isOnSpecial` whenever Kogan itself shows a Was/SRP/Don't Pay/RRP reference price (never fabricated -- null when Kogan shows no such price).
- Customer reviews on demand: review text, star rating, author, date and helpful count, with a per-product cap you control.
- Brand, price-range and sort filters, plus forward pagination across result pages.
- Optional one-click export of results into Notion, Linear, Airtable or Apify via MCP connectors.

### Data you get

> Sample shape, values are illustrative placeholders, not from a live listing.

| Field | Example |
| --- | --- |
| store | "au" |
| url | "https://www.kogan.com/au/buy/sample-product-slug-000000/" |
| title | "Sample 55 inch 4K Smart TV" |
| brand | "Kogan" |
| sku | "ABC-000000" |
| gtin | "0000000000000" |
| price | 499 |
| priceMax | 549 |
| originalPrice | 699 |
| originalPriceLabel | "Was" |
| discountAmount | 200 |
| discountPercent | 28.6 |
| isOnSpecial | true |
| specialsCategory | "clearance" |
| currency | "AUD" |
| availability | "InStock" |
| condition | "New" |
| category | "TVs" |
| description | "Full product description text appears here when fetchDetails is on." |
| image | "https://assets.kogan.com/images/sample/000000/1-000000.jpg" |
| images | \["https://assets.kogan.com/images/sample/000000/1-000000.jpg"] |
| averageRating | 4.8 |
| ratingCount | 166 |
| reviewCount | 5 |
| reviews | \[ { "author": "Sample Reviewer", "stars": 5, "comment": "Great value.", "reviewDate": "2026-01-01T00:00:00" } ] |
| productId | "000000000" |

### How to use

Search by keyword:

```json
{
  "mode": "search",
  "queries": ["air fryer"],
  "store": "au",
  "maxItems": 50
}
```

Search with brand, price and sort filters:

```json
{
  "mode": "search",
  "queries": ["tv"],
  "store": "au",
  "brand": "Kogan",
  "minPrice": 200,
  "maxPrice": 800,
  "sortBy": "price_asc",
  "maxItems": 100
}
```

Products with full details and reviews:

```json
{
  "mode": "search",
  "queries": ["headphones"],
  "store": "au",
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviewsPerProduct": 20,
  "maxItems": 30
}
```

Browse a specials category (Hot Deals, Clearance, Smart Savers):

```json
{
  "mode": "search",
  "specialsCategory": "clearance",
  "store": "au",
  "maxItems": 50
}
```

Scrape pasted URLs:

```json
{
  "mode": "url",
  "urls": [
    "https://www.kogan.com/au/shop/?q=laptop",
    "https://www.kogan.com/au/c/smart-tvs/"
  ],
  "maxItems": 60
}
```

### Input parameters

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| mode | string | "search" | "search" for keyword + filters, "url" for pasted links. |
| queries | array | \["headphones"] | Keywords to search (search mode). Each is searched separately. |
| store | string | "au" | Store region: "au", "nz" or "us". |
| brand | string | (none) | Limit to one brand, exact Kogan spelling (search mode). |
| sortBy | string | "relevance" | "relevance", "price\_asc", "price\_desc", "newest" or "rating". |
| specialsCategory | string | (none) | Browse "hot-deals", "clearance" or "smart-savers" as an extra search target (search mode). |
| minPrice | integer | (none) | Keep products priced at or above this amount. |
| maxPrice | integer | (none) | Keep products priced at or below this amount. |
| urls | array | (example) | Category/search URLs to scrape (url mode). |
| fetchDetails | boolean | true | Open each product page for description, images, category, condition and rating. |
| fetchReviews | boolean | false | Also collect customer reviews per product. |
| maxReviewsPerProduct | integer | 20 | Cap on reviews per product (0 = all). |
| maxItems | integer | 20 | Max products for the whole run (0 = unlimited). |
| maxPages | integer | 0 | Safety cap on pages per keyword/URL/specials category (0 = walk every page; the run still stops at Max products, a repeated page, or the store's own result total). |
| resumeFromRunId | string | (none) | ID of a previous run or dataset. Already-collected products are skipped so this run returns only new ones (a delta). |
| proxy | object | Apify Proxy | Connection settings. Pin to the store's country for best results. |

### Output example

> Sample shape, values are illustrative placeholders, not from a live listing.

```json
{
  "store": "au",
  "url": "https://www.kogan.com/au/buy/sample-product-slug-000000/",
  "title": "Sample 55 inch 4K Smart TV",
  "brand": "Kogan",
  "sku": "ABC-000000",
  "gtin": "0000000000000",
  "price": 499,
  "priceMax": 549,
  "originalPrice": 699,
  "originalPriceLabel": "Was",
  "discountAmount": 200,
  "discountPercent": 28.6,
  "isOnSpecial": true,
  "specialsCategory": "clearance",
  "currency": "AUD",
  "availability": "InStock",
  "condition": "New",
  "category": "TVs",
  "description": "Full product description text appears here when fetchDetails is on.",
  "image": "https://assets.kogan.com/images/sample/000000/1-000000.jpg",
  "images": ["https://assets.kogan.com/images/sample/000000/1-000000.jpg"],
  "averageRating": 4.8,
  "ratingCount": 166,
  "reviewCount": 1,
  "reviews": [
    {
      "reviewId": 0,
      "author": "Sample Reviewer",
      "rating": 10,
      "stars": 5,
      "comment": "Great value for the price.",
      "reviewerType": "kogan",
      "reviewDate": "2026-01-01T00:00:00",
      "isK1Member": null,
      "helpfulCount": 0
    }
  ],
  "productId": "000000000"
}
```

### Send results into your apps (MCP connectors)

You can optionally pipe results into the apps you already use, via Model Context Protocol (MCP) connectors, without changing the dataset output.

1. Authorize a connector under Apify, Settings, API & Integrations (Notion, Linear, Airtable or Apify).
2. Select it in the "Export to your apps" section of the input.
3. For Notion, set the parent page URL so a page is created per product.

Each connector receives a condensed, human-readable summary per product (title plus key fields as plain text), not the full JSON. The complete record always stays in the Apify dataset. Leave the connector field empty to skip this step.

### Plan requirement

Runs on any Apify plan, including the free tier. For the most reliable coverage, enable Apify Proxy and pin it to the store's country.

# Actor input Schema

## `mode` (type: `string`):

Choose 'search' to use keywords and filters, or 'url' to scrape specific Kogan category/search URLs you paste below.

## `queries` (type: `array`):

One or more keywords to search, for example 'headphones' or 'air fryer'. Each keyword is searched separately.

## `store` (type: `string`):

Which Kogan regional store to scrape. Prices, stock and catalogue differ per region.

## `brand` (type: `string`):

Optional. Limit results to a single brand exactly as Kogan spells it, for example 'Kogan' or 'Philips'.

## `sortBy` (type: `string`):

Result ordering. Note: Kogan inserts some promoted items regardless of sort.

## `specialsCategory` (type: `string`):

Optional. Browse one of Kogan's own deals grids instead of (or alongside) a keyword search. Adds this as an extra search target; brand/sort filters don't apply to it. Each product also gets originalPrice/discountPercent/isOnSpecial fields when Kogan itself shows a Was/SRP/Don't Pay/RRP reference price.

## `minPrice` (type: `integer`):

Optional. Only keep products priced at or above this amount (in the store's currency). Applied to each product's price.

## `maxPrice` (type: `integer`):

Optional. Only keep products priced at or below this amount (in the store's currency).

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

Category or search URLs to scrape, for example https://www.kogan.com/au/shop/?q=air+fryer or https://www.kogan.com/au/c/smart-tvs/. Multiple URLs supported.

## `fetchDetails` (type: `boolean`):

Open each product page for full description, all images, category, condition, average rating and rating count. Adds one request per product.

## `fetchReviews` (type: `boolean`):

Also collect customer reviews for each product (review text, star rating, author, date). Adds requests per product.

## `maxReviewsPerProduct` (type: `integer`):

Cap on reviews collected per product when 'Fetch customer reviews' is on. Use 0 for all available reviews.

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

Maximum number of products to return across the whole run. Use 0 for unlimited.

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

Optional safety cap on result pages walked per keyword/URL/specials category. Use 0 to walk every page; the run still stops automatically once Max products is reached, a page repeats with no new products, or the store's own result total is reached.

## `resumeFromRunId` (type: `string`):

Optional. ID of a previous run of this actor (or a dataset ID). Products already in that dataset are skipped, so this run returns only NEW products (a delta). Combine both runs' datasets for the full set. Max products then counts only the new products.

## `proxy` (type: `object`):

Apify Proxy in the store's country is recommended for reliable results. On the free plan, coverage may be limited and some runs may return no results.

## `mcpConnectors` (type: `array`):

Optionally send results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize one under Apify, Settings, API & Integrations, then select it here. Notion gets a rich page-per-item export; other connectors get a best-effort write/digest. Leave empty to skip; never changes the dataset output. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com).

## `notionParentPageUrl` (type: `string`):

URL or id of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors.

## `maxNotifyListings` (type: `integer`):

Cap on items written to each connector per run. Does not affect the dataset.

## Actor input object example

```json
{
  "mode": "search",
  "queries": [
    "headphones"
  ],
  "store": "au",
  "sortBy": "relevance",
  "specialsCategory": "",
  "urls": [
    "https://www.kogan.com/au/shop/?q=air+fryer"
  ],
  "fetchDetails": true,
  "fetchReviews": false,
  "maxReviewsPerProduct": 20,
  "maxItems": 20,
  "maxPages": 0,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  },
  "maxNotifyListings": 50
}
```

# 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 = {
    "mode": "search",
    "queries": [
        "headphones"
    ],
    "urls": [
        "https://www.kogan.com/au/shop/?q=air+fryer"
    ],
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "AU"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/kogan-com-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 = {
    "mode": "search",
    "queries": ["headphones"],
    "urls": ["https://www.kogan.com/au/shop/?q=air+fryer"],
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "AU",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/kogan-com-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 '{
  "mode": "search",
  "queries": [
    "headphones"
  ],
  "urls": [
    "https://www.kogan.com/au/shop/?q=air+fryer"
  ],
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  }
}' |
apify call abotapi/kogan-com-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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