# Musinsa Search Scraper (Korean Fashion) (`ai94_jin/apify-actors-2`) Actor

Scrape products from Musinsa, Korea's largest fashion platform. Search any keyword and get product names, brands, KRW prices with sale rates, stock status, and links. Great for K-fashion market research and price monitoring.

- **URL**: https://apify.com/ai94\_jin/apify-actors-2.md
- **Developed by:** [Lee Jinseok](https://apify.com/ai94_jin) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-usage

## 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

## Musinsa Search Scraper — Korean Fashion Platform

Scrape product listings from [Musinsa (무신사)](https://www.musinsa.com), Korea's largest online fashion platform. Search any keyword and get structured product data: names, brands, **prices in KRW with sale rates**, stock status, gender category, and product links.

### Why this Actor?

Musinsa is the #1 destination for Korean fashion — the place where K-fashion trends, brand pricing, and demand signals appear first. It has no public API, and few working scrapers exist. Maintained by a developer based in Korea.

Use cases:

- **K-fashion market research** — what brands and products rank for any keyword
- **Price & discount monitoring** — track sale rates over time (schedule runs)
- **Brand intelligence** — see how a brand's catalog is priced and positioned
- **Sourcing & cross-border resale** — spot Korean street prices before importing

### Input

```json
{
  "keyword": "청바지",
  "max_items": 40
}
```

| Field | Type | Description |
|---|---|---|
| `keyword` | string | Product keyword — Korean works best, e.g. `반팔`, `청바지`, `nike` (required) |
| `max_items` | integer | 1–200 products (default 40, paginated automatically) |

### Output

Real row from an actual run:

```json
{
  "goods_no": "4818790",
  "name": "[10주년기획] 모두의 에센셜 데님 팬츠",
  "brand": "디미트리블랙",
  "final_price_krw": 34900,
  "normal_price_krw": 49900,
  "sale_rate": 30,
  "is_sold_out": false,
  "gender": "여성",
  "url": "https://www.musinsa.com/products/4818790",
  "image": "https://image.msscdn.net/images/goods_img/...",
  "scraped_at": "2026-08-29T13:00:00+00:00"
}
```

`final_price_krw` is the current selling price; `sale_rate` is the discount percentage against `normal_price_krw`.

### Notes & fair use

- Scrapes only public search result pages — no login, no personal data.
- Keep result counts reasonable and schedule runs at sensible intervals.
- Results follow Musinsa's default ranking for the query.

### Roadmap

- Category/ranking pages (not just keyword search)
- Review counts and ratings from product pages
- Brand-page catalog mode

**More Korean data Actors by the same developer:** [Korean Jobs Scraper](https://apify.com/ai94_jin/apify-actors) · [Danawa Price Scraper](https://apify.com/ai94_jin/apify-actors-1)

***

*Keywords: Musinsa scraper, Korean fashion data, K-fashion market research, 무신사 크롤링, 무신사 가격, Korean e-commerce scraper, Korea fashion prices, 패션 데이터 수집, Korean brand monitoring*

# Actor input Schema

## `keyword` (type: `string`):

Product keyword in Korean or English, e.g. 반팔, 청바지, nike

## `max_items` (type: `integer`):

Maximum number of products to return (1-200)

## Actor input object example

```json
{
  "keyword": "반팔",
  "max_items": 40
}
```

# Actor output Schema

## `products` (type: `string`):

Dataset with product names, brands, KRW prices, sale rates and links

# 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 = {
    "keyword": "반팔",
    "max_items": 40
};

// Run the Actor and wait for it to finish
const run = await client.actor("ai94_jin/apify-actors-2").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 = {
    "keyword": "반팔",
    "max_items": 40,
}

# Run the Actor and wait for it to finish
run = client.actor("ai94_jin/apify-actors-2").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "keyword": "반팔",
  "max_items": 40
}' |
apify call ai94_jin/apify-actors-2 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ai94_jin/apify-actors-2"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/UKIKdNoasYWboBGJF/builds/PdftudjfmNl25XmOY/openapi.json
