# Musinsa Ranking Scraper (`oxygenated_quagmire/musinsa-ranking-scraper`) Actor

Scrape product rankings from Musinsa (무신사), Korea's largest fashion e-commerce platform. Get rank, brand, price, discount, and review data by category. No browser needed.

- **URL**: https://apify.com/oxygenated\_quagmire/musinsa-ranking-scraper.md
- **Developed by:** [Session zero](https://apify.com/oxygenated_quagmire) (community)
- **Categories:** E-commerce, Marketing
- **Stats:** 32 total users, 6 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 1,000 ranking items

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## Musinsa Ranking Scraper

Scrape real-time product rankings from **Musinsa (무신사)**, Korea's largest fashion e-commerce platform with over 10 million users.

### Features

- 🏆 **Real-time rankings** — Overall (전체), New arrivals (NEW), Rising (급상승)
- 👗 **13 categories** — 상의, 아우터, 바지, 신발, 가방, 뷰티, and more
- 💰 **Complete pricing data** — final price, original price, discount rate
- ⭐ **Review metrics** — review count and score
- 🚀 **No browser needed** — direct API access, fast and lightweight

### Output Fields

| Field | Type | Description |
|-------|------|-------------|
| `rankNum` | number | Product rank position |
| `productId` | string | Musinsa product ID |
| `productUrl` | string | Product page URL |
| `brandName` | string | Brand name (Korean) |
| `brandId` | string | Brand identifier |
| `productName` | string | Product name (Korean) |
| `finalPrice` | number | Discounted price (KRW) |
| `originalPrice` | number | Original price (KRW) |
| `discountRatio` | number | Discount percentage |
| `imageUrl` | string | Product image URL |
| `reviewCount` | number | Number of reviews |
| `reviewScore` | number | Review score |
| `labels` | array | Product badges/labels |

### Input Parameters

| Parameter | Default | Description |
|-----------|---------|-------------|
| `rankingType` | `"전체"` | Ranking type: `전체`, `NEW`, `급상승` |
| `category` | `"전체"` | Category filter (13 options) |
| `maxItems` | `100` | Max products to scrape (1–100) |

### Example Output

```json
{
  "rankNum": 1,
  "productId": "5994874",
  "productUrl": "https://www.musinsa.com/products/5994874",
  "brandName": "아디다스",
  "brandId": "adidas",
  "productName": "파이어버드 우븐 트랙탑",
  "finalPrice": 96750,
  "originalPrice": 129000,
  "discountRatio": 25,
  "imageUrl": "https://image.msscdn.net/...",
  "reviewCount": 1,
  "reviewScore": 100,
  "labels": []
}
```

### Use Cases

- **Trend monitoring** — Track Korea's fashion trends in real-time
- **Price intelligence** — Monitor discount patterns across categories
- **Market research** — Analyze top-selling brands on Korea's #1 fashion platform
- **Inventory planning** — Identify fast-moving categories and brands
- **E-commerce analytics** — Benchmark performance against trending products

### Notes

- Rankings are updated in real-time by Musinsa
- Maximum 100 products per category ranking
- No proxy required for standard usage

# Actor input Schema

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

Scraping mode. Currently only 'ranking' is supported.

## `rankingType` (type: `string`):

Type of ranking to scrape: 전체 (Overall), NEW (New arrivals ranking), 급상승 (Rising products)

## `category` (type: `string`):

Fashion category to filter rankings. Select '전체' for all categories.

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

Maximum number of products to scrape (default: 100). Musinsa rankings typically show up to 100 items.

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

Optional proxy settings for avoiding rate limits.

## Actor input object example

```json
{
  "mode": "ranking",
  "rankingType": "전체",
  "category": "전체",
  "maxItems": 100
}
```

# 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": "ranking",
    "rankingType": "전체",
    "category": "전체"
};

// Run the Actor and wait for it to finish
const run = await client.actor("oxygenated_quagmire/musinsa-ranking-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": "ranking",
    "rankingType": "전체",
    "category": "전체",
}

# Run the Actor and wait for it to finish
run = client.actor("oxygenated_quagmire/musinsa-ranking-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": "ranking",
  "rankingType": "전체",
  "category": "전체"
}' |
apify call oxygenated_quagmire/musinsa-ranking-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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