# Gmarket.co.kr Scraper - Products, Prices & Customer Reviews

**Use case:** 

Scrape Gmarket.co.kr products & reviews. Search by keyword/URL. Get clean JSON data for ecommerce collection.

## Input

```json
{
  "mode": "search",
  "keywords": [
    "laptop"
  ],
  "minPrice": 0,
  "maxPrice": 0,
  "overseaDeliveryOnly": false,
  "bigSmileOnly": false,
  "urls": [
    "https://mg.gmarket.co.kr/Search/Search?keyword=laptop"
  ],
  "reviewsOnly": false,
  "maxReviewsPerProduct": 50,
  "maxPages": 0,
  "maxListings": 20,
  "fetchDetails": true,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "goodsCode": {
    "label": "Product ID",
    "format": "text"
  },
  "productGoodsCode": {
    "label": "Reviewed product ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "comment": {
    "label": "Comment",
    "format": "text"
  },
  "linkUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "productLinkUrl": {
    "label": "Reviewed product URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "sellPriceKrw": {
    "label": "Price ₩",
    "format": "number"
  },
  "currencyPrice": {
    "label": "USD",
    "format": "text"
  },
  "discountRate": {
    "label": "Disc %",
    "format": "text"
  },
  "sellerCompanyName": {
    "label": "Seller",
    "format": "text"
  },
  "overseaDeliveryAvailable": {
    "label": "Oversea",
    "format": "boolean"
  },
  "authorNickname": {
    "label": "Author",
    "format": "text"
  },
  "authorCountryCode": {
    "label": "Country",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingMax": {
    "label": "Out of",
    "format": "number"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "date"
  },
  "hasPhotos": {
    "label": "Photos?",
    "format": "boolean"
  },
  "changeType": {
    "label": "Change",
    "format": "text"
  },
  "changedFields": {
    "label": "Changed fields",
    "format": "array"
  },
  "firstSeenAt": {
    "label": "First seen",
    "format": "date"
  },
  "lastSeenAt": {
    "label": "Last seen",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Gmarket.co.kr Scraper - Products, Prices & Customer Reviews](https://apify.com/abotapi/gmarket-global-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/gmarket-global-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/abotapi/gmarket-global-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`).
