# SSG.com Products Scraper — Korea Shinsegae Marketplace (`bovi/ssg-products-scraper`) Actor

Scrape product listings from ssg.com (Shinsegae, Korea) by keyword or search URL. Returns item ID, name, brand, final & strike-out price (KRW), discount, review score & count, shipping, ad flag, image and product URL. Browser-rendered via residential proxy.

- **URL**: https://apify.com/bovi/ssg-products-scraper.md
- **Developed by:** [Vitalii Bondarev](https://apify.com/bovi) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 90.9% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.18 / 1,000 products

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

## SSG.com Products Scraper — Korea Shinsegae Marketplace

Scrape product listings from **SSG.COM** (`ssg.com`), the online marketplace of **Shinsegae**, one of Korea's largest retail groups (E-Mart, SSG, Shinsegae Department Store). Search by keyword or paste any SSG search URL, paginate the full result set, and get a clean, flat record per product: item ID, name, brand, final and list price in KRW, discount, review score and count, shipping label, sponsored flag, image and product URL — plus a machine-readable `parse_confidence` score on every row.

This **SSG.com Products Scraper** is built for price-monitoring tools, e-commerce and market-research teams, brand-protection and reseller analysts, and lead-generation pipelines that need structured Korean retail catalog data without maintaining a fragile in-house scraper.

### What SSG product data you get

Every result row contains:

- **itemId** — SSG's stable product id
- **itemName** — the product name exactly as listed in Korean (e.g. `베이직탭 Air 태블릿 PC 10인치`)
- **brandName** / **brandEngName** — brand in Korean and (when present) English
- **finalPrice** — current selling price parsed to an integer in KRW
- **priceText** — the price exactly as SSG displays it (e.g. `198,000원~`)
- **strikeOutPrice** — original / list price in KRW when the item is discounted (else null)
- **discountRate** — discount percentage when shown
- **currency** — always `KRW`
- **reviewScore** — average review rating (e.g. `4.9`)
- **reviewCount** — number of reviews
- **shipping** — shipping label when shown (e.g. `무료배송` — free shipping)
- **isAd** — `true` when the row is a sponsored / promoted listing
- **isSoldOut** — `true` when the item is out of stock
- **imageUrl** — product thumbnail
- **url** — canonical link to the product detail page on ssg.com
- **query** — the search term that surfaced this product, stamped for provenance
- **parse\_confidence** — quality signal per row (fraction of core fields present), so you can filter incomplete records programmatically

### How to scrape SSG.com products

1. Enter one or more **search terms** (Korean or English) — e.g. `노트북`, `laptop`, `세제`. The actor builds the SSG search for each term.
2. **Or** paste one or more **SSG search URLs** copied straight from the site (e.g. `https://www.ssg.com/search.ssg?target=all&query=노트북`). Each is paginated independently.
3. Set **Pages per query** to go deeper (SSG shows ~44 products per page) and **Max total items** to cap cost (default 100).
4. Run. Results stream into the dataset as they are scraped.

The actor paginates automatically and de-duplicates by `itemId` until every matching product is collected or your `maxItems` cap is reached.

### How much does it cost?

Pay per result — there is **no subscription**. You are billed per product returned, so a small trial run costs cents. The actor runs on **Apify's RESIDENTIAL proxy** (country: South Korea), billed to your own Apify account — there is no extra proxy fee from us and no key to supply.

### Example output

```json
{
  "itemId": "1000770942793",
  "itemName": "베이직탭 Air 태블릿 PC 10인치 게이밍 인강용 업무용 가성비 안드로이드 미니",
  "brandName": "베이직스",
  "finalPrice": 198000,
  "priceText": "198,000원~",
  "strikeOutPrice": null,
  "discountRate": null,
  "currency": "KRW",
  "reviewScore": 4.9,
  "reviewCount": 19,
  "shipping": "무료배송",
  "isAd": true,
  "isSoldOut": false,
  "imageUrl": "https://sitem.ssgcdn.com/93/27/94/item/1000770942793_i1_232.jpg",
  "url": "https://www.ssg.com/item/itemView.ssg?itemId=1000770942793&siteNo=6004&salestrNo=6005",
  "query": "노트북",
  "parse_confidence": 1.0
}
```

### Why this SSG.com Products Scraper

- **Reads the catalog from SSG's own data layer** — the parser extracts products from SSG's embedded JSON state, not brittle CSS class names, so it keeps working through front-end redesigns.
- **Normalized prices** — `finalPrice` and `strikeOutPrice` are parsed to integers in KRW, ready for filtering, sorting and discount math.
- **Reliable access built in** — each query runs in a hardened browser that first warms a real session, the decisive step for reaching SSG's search reliably from the cloud.
- **Quality signal built in** — `parse_confidence` lets you trust the data and drop incomplete rows automatically.
- **Keyword or URL** — start from a plain search term or paste any SSG search page; mix and match.
- **Apify Proxy, pay-per-result** — runs on Apify's RESIDENTIAL proxy by default for reliable access; you pay only per result, no monthly fee.

### FAQ

**Do I need an SSG login or API key?** No. The actor reads public SSG search and product listings.

**Which marketplace does this cover?** ssg.com — Shinsegae's integrated online mall, which includes E-Mart, SSG.COM and Shinsegae Department Store inventory.

**In what language is the data?** Product names, brands and shipping labels are returned in Korean exactly as SSG lists them; prices are normalized to integer KRW.

# Actor input Schema

## `searchTerms` (type: `array`):

Product keywords to search on ssg.com (Korean or English). Examples: "노트북", "laptop", "세제". Each term is searched and paginated independently. Leave blank if you provide searchUrls.

## `searchUrls` (type: `array`):

Paste one or more ssg.com search URLs (copy them from the site, e.g. https://www.ssg.com/search.ssg?target=all\&query=노트북). Each is paginated independently. Combine with or instead of searchTerms.

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

Maximum total products to push across all queries. Default 100 keeps trial runs cheap. Set 0 for unlimited.

## `pagesToFetch` (type: `integer`):

How many result pages to fetch per query (ssg.com shows ~44 products per page). Default 1.

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

Apify proxy used for all requests. Defaults to the RESIDENTIAL group, country South Korea — required for reliable access to ssg.com from the cloud. Billed to the run owner.

## Actor input object example

```json
{
  "searchTerms": [
    "노트북"
  ],
  "maxItems": 100,
  "pagesToFetch": 1,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "KR"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Dataset of ssg.com product records (itemId, itemName, brandName, finalPrice/priceText/strikeOutPrice, discountRate, currency, reviewScore, reviewCount, shipping, isAd, imageUrl, url, parse\_confidence).

# 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 = {
    "searchTerms": [
        "노트북"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("bovi/ssg-products-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 = { "searchTerms": ["노트북"] }

# Run the Actor and wait for it to finish
run = client.actor("bovi/ssg-products-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 '{
  "searchTerms": [
    "노트북"
  ]
}' |
apify call bovi/ssg-products-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/1ejQPORQwXK49Lh3M/builds/GSNLMK7N6G2Zeq8Aa/openapi.json
