# Naver News Scraper — Korean News & Headlines (`huggable_quote/naver-news-scraper`) Actor

Scrape Korean news from Naver News, Korea's #1 news platform with 30M+ daily users. Search by keyword, filter by date, get article titles, sources, links and summaries. No API key needed. From the maker of Naver Map Scraper.

- **URL**: https://apify.com/huggable\_quote/naver-news-scraper.md
- **Developed by:** [OrbitData Labs](https://apify.com/huggable_quote) (community)
- **Categories:** News, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 results

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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Naver News Scraper — Korean News Articles & Headlines 🇰🇷📰

Scrape Korean news from **Naver News** — South Korea's dominant news platform where **80%+ of news consumption** happens, serving **30M+ daily users**.

### Why Naver News Scraper?

- **Korea's #1 news platform** — Aggregates all major Korean media outlets (Yonhap, Chosun, Hankyung, MBC, KBS, and 100+ more)
- **3 powerful modes** — Keyword search, category browsing, and trending/ranking news
- **No API key required** — Works out of the box with a built-in Naver API integration. No setup needed
- **Clean structured data** — HTML tags auto-stripped, dates in ISO 8601, consistent JSON output
- **Copyright-safe** — Only extracts titles, summaries, sources, and URLs. Never extracts full article text
- Part of the **Korea Data Suite** by huggable_quote

### Data Modes

#### 1. Keyword Search (`keyword_search`)

Search articles by any keyword in Korean or English. Uses the official Naver Search API — up to 1,000 results per keyword, fast and reliable.

Example keywords: `삼성전자`, `AI 반도체`, `Korea economy`, `BTS`

#### 2. Category Browse (`category_browse`)

Browse the latest news from Naver News category sections:

| Category | Korean | Section Code |
|----------|--------|:------------:|
| Politics | 정치 | 100 |
| Economy | 경제 | 101 |
| Society | 사회 | 102 |
| Culture/Life | 생활/문화 | 103 |
| World | 세계 | 104 |
| IT/Science | IT/과학 | 105 |

#### 3. Ranking (`ranking`)

Get trending news that Korea is reading right now:

- **Most Viewed** (많이 본 뉴스) — Articles with the highest view count
- **Most Commented** (댓글 많은 뉴스) — Articles generating the most discussion

### Input Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `mode` | string | `keyword_search` | `keyword_search`, `category_browse`, or `ranking` |
| `searchKeywords` | string[] | — | Keywords to search (keyword_search mode) |
| `maxArticlesPerKeyword` | integer | 50 | Max results per keyword (1–1,000) |
| `sortBy` | string | `date` | `date` (latest) or `relevance` |
| `category` | string | `economy` | News category (category_browse mode) |
| `rankingType` | string | `most_viewed` | `most_viewed` or `most_commented` |
| `maxArticles` | integer | 30 | Max articles for category/ranking mode |
| `dateFrom` | string | — | Filter from date (YYYY-MM-DD) |
| `dateTo` | string | — | Filter until date (YYYY-MM-DD) |

### Output Fields

Each article is one row in the dataset:

| Field | Type | Description |
|-------|------|-------------|
| `title` | string | Article headline (Korean, may include HTML `<b>` tags from API) |
| `titleClean` | string | Article headline with HTML tags stripped |
| `description` | string | Article summary/snippet |
| `source` | string | News outlet name (한국경제, 연합뉴스, MBC, etc.) |
| `sourceUrl` | string | Original article URL on the news outlet's site |
| `naverUrl` | string | Naver News article URL (n.news.naver.com) |
| `publishedAt` | string | Publication datetime in ISO 8601 |
| `category` | string | News category in English |
| `searchKeyword` | string | The keyword that found this article |
| `ranking` | integer | Ranking position (ranking mode only) |
| `language` | string | Always `ko` (Korean) |
| `scrapedAt` | string | Scraping timestamp in ISO 8601 |

### Output Example

```json
[
  {
    "title": "삼성전자, <b>AI</b> 반도체 투자 10조 확대 발표",
    "titleClean": "삼성전자, AI 반도체 투자 10조 확대 발표",
    "description": "삼성전자가 AI 반도체 분야에 10조원 추가 투자를 발표했다. HBM4 양산 시점을 앞당기고...",
    "source": "한국경제",
    "sourceUrl": "https://www.hankyung.com/article/202605121234",
    "naverUrl": "https://n.news.naver.com/article/015/0005012345",
    "publishedAt": "2026-05-12T09:30:00+09:00",
    "category": null,
    "searchKeyword": "삼성전자",
    "ranking": null,
    "language": "ko",
    "scrapedAt": "2026-05-12T10:15:30+09:00"
  },
  {
    "title": "현대차, 전기차 글로벌 판매 1위 달성",
    "titleClean": "현대차, 전기차 글로벌 판매 1위 달성",
    "description": "현대자동차그룹이 올해 1분기 글로벌 전기차 판매량에서 처음으로 1위를 차지했다...",
    "source": "연합뉴스",
    "sourceUrl": "https://www.yna.co.kr/view/AKR20260512001200003",
    "naverUrl": "https://n.news.naver.com/article/001/0015012345",
    "publishedAt": "2026-05-12T11:00:00+09:00",
    "category": null,
    "searchKeyword": "현대자동차",
    "ranking": null,
    "language": "ko",
    "scrapedAt": "2026-05-12T11:30:00+09:00"
  }
]
````

### Pricing

**$2.50 per 1,000 results** (Pay per event)

### Use Cases

- **Korean media monitoring** for global companies operating in Korea
- **Market intelligence** — Track semiconductor, K-battery, EV, and K-pop industry news
- **Investment research** — Monitor Korean market news alongside our [KRX Stock Scraper](https://apify.com/huggable_quote/krx-stock-scraper)
- **PR & marketing** — Korean media coverage tracking and sentiment analysis
- **NLP/AI research** — Build Korean news corpora for language models and sentiment analysis
- **Academic research** — Study Korean media landscape and press coverage patterns

### Korea Data Suite by huggable\_quote 🇰🇷

The most comprehensive Korean data collection on Apify:

- 📍 [Naver Map Scraper](https://apify.com/huggable_quote/naver-map-scraper) — Korean business listings & reviews
- 📝 [Naver Blog & Cafe Scraper](https://apify.com/huggable_quote/naver-blog-cafe-scraper) — Korean blog posts & content
- 🛒 [Naver Shopping Scraper](https://apify.com/huggable_quote/naver-shopping-scraper) — Korean e-commerce product data & prices
- 📰 **Naver News Scraper** — Korean news articles & headlines *(this actor)*
- 📈 [KRX Stock Scraper](https://apify.com/huggable_quote/krx-stock-scraper) — Korean stock market data

# Actor input Schema

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

Data collection mode

## `searchKeywords` (type: `array`):

Keywords to search for. Example: \['삼성전자', 'AI 반도체', 'Korea economy']. Used in keyword\_search mode.

## `maxArticlesPerKeyword` (type: `integer`):

Maximum number of articles per keyword. Max 1000.

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

Sort order for keyword search results

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

News category for category\_browse mode

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

Ranking type for ranking mode

## `maxArticles` (type: `integer`):

Maximum number of articles for category\_browse and ranking modes

## `dateFrom` (type: `string`):

Filter articles from this date (YYYY-MM-DD). Optional.

## `dateTo` (type: `string`):

Filter articles until this date (YYYY-MM-DD). Optional.

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

Proxy settings. Usually not needed for Naver API. May be needed for web scraping mode.

## Actor input object example

```json
{
  "mode": "keyword_search",
  "maxArticlesPerKeyword": 50,
  "sortBy": "date",
  "category": "economy",
  "rankingType": "most_viewed",
  "maxArticles": 30
}
```

# Actor output Schema

## `results` (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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("huggable_quote/naver-news-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("huggable_quote/naver-news-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 '{}' |
apify call huggable_quote/naver-news-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Naver News Scraper — Korean News & Headlines",
        "description": "Scrape Korean news from Naver News, Korea's #1 news platform with 30M+ daily users. Search by keyword, filter by date, get article titles, sources, links and summaries. No API key needed. From the maker of Naver Map Scraper.",
        "version": "1.0",
        "x-build-id": "ziuKIOUGwL54e15sY"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/huggable_quote~naver-news-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-huggable_quote-naver-news-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/huggable_quote~naver-news-scraper/runs": {
            "post": {
                "operationId": "runs-sync-huggable_quote-naver-news-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/huggable_quote~naver-news-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-huggable_quote-naver-news-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Scraping Mode",
                        "enum": [
                            "keyword_search",
                            "category_browse",
                            "ranking"
                        ],
                        "type": "string",
                        "description": "Data collection mode",
                        "default": "keyword_search"
                    },
                    "searchKeywords": {
                        "title": "Search Keywords",
                        "type": "array",
                        "description": "Keywords to search for. Example: ['삼성전자', 'AI 반도체', 'Korea economy']. Used in keyword_search mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxArticlesPerKeyword": {
                        "title": "Max articles per keyword",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of articles per keyword. Max 1000.",
                        "default": 50
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "date",
                            "relevance"
                        ],
                        "type": "string",
                        "description": "Sort order for keyword search results",
                        "default": "date"
                    },
                    "category": {
                        "title": "News Category",
                        "enum": [
                            "politics",
                            "economy",
                            "society",
                            "culture",
                            "world",
                            "it_science"
                        ],
                        "type": "string",
                        "description": "News category for category_browse mode",
                        "default": "economy"
                    },
                    "rankingType": {
                        "title": "Ranking Type",
                        "enum": [
                            "most_viewed",
                            "most_commented"
                        ],
                        "type": "string",
                        "description": "Ranking type for ranking mode",
                        "default": "most_viewed"
                    },
                    "maxArticles": {
                        "title": "Max articles (for category/ranking mode)",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of articles for category_browse and ranking modes",
                        "default": 30
                    },
                    "dateFrom": {
                        "title": "Date From",
                        "type": "string",
                        "description": "Filter articles from this date (YYYY-MM-DD). Optional."
                    },
                    "dateTo": {
                        "title": "Date To",
                        "type": "string",
                        "description": "Filter articles until this date (YYYY-MM-DD). Optional."
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy settings. Usually not needed for Naver API. May be needed for web scraping mode."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
