# Naver Search API → Clean English JSON (`maolab/naver-search-api`) Actor

Korean Naver search results normalized to English JSON via the official Naver Open API. News, blog, web, and shopping verticals.

- **URL**: https://apify.com/maolab/naver-search-api.md
- **Developed by:** [MAOLAB](https://apify.com/maolab) (community)
- **Categories:** Developer tools, E-commerce, AI
- **Stats:** 2 total users, 1 monthly users, 50.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $30.00 / 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 Search API → Clean English JSON

Search Korea's largest portal in your own language. This Apify Actor calls Naver's official Open Search API and returns clean English JSON, ready for AI agents, dashboards, and analytics pipelines.

### What it does

- Calls the **official Naver Open API** (no scraping, no ToS gray area) for **news, blog, web, and shopping** results
- **Normalizes Korean → English** with Claude Haiku, including HTML entity stripping and entity preservation (BTS, Samsung, BLACKPINK stay BTS, Samsung, BLACKPINK)
- Returns a **flat, predictable JSON schema** with title, summary, source URL, publish date, and translation confidence

### Use cases

1. **AI agents** — drop into Claude Desktop, Cursor, or any MCP client to make Korean web searchable in English chats
2. **Trend analysts** — track K-pop, K-drama, K-beauty, or any keyword across Naver News and Blogs in English
3. **E-commerce research** — pull Naver Shopping results for cross-border arbitrage, price monitoring, or competitor scans
4. **Newsroom & investor research** — surface Korean coverage of global brands, executives, or events without a translator
5. **Workflow automation** — wire into Make, n8n, Zapier, or LangChain for agent workflows that touch Korean data

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `query` | string (required) | — | Keyword. Korean (`방탄소년단`) and English (`BTS`) are both supported. |
| `search_type` | enum | `news` | One of `news`, `blog`, `webkr`, `shop`. |
| `max_results` | integer | `10` | Between 1 and 100. |
| `translate` | boolean | `true` | If `true`, normalize to English with Claude Haiku. If `false`, return raw Korean (still HTML-stripped). |
| `sort` | enum | `sim` | `sim` (relevance) or `date`. |

#### Example inputs

```json
{ "query": "BTS", "search_type": "news", "max_results": 5 }
````

```json
{ "query": "K-beauty trends", "search_type": "blog", "max_results": 20 }
```

```json
{ "query": "삼성전자 실적", "search_type": "news", "max_results": 10, "sort": "date" }
```

```json
{ "query": "iPhone 17 케이스", "search_type": "shop", "max_results": 15 }
```

```json
{ "query": "korea startup ecosystem", "search_type": "webkr", "max_results": 25 }
```

### Output

Each result is pushed to the default dataset as a flat record:

```json
{
  "title": "BTS announces world tour 2026",
  "summary": "BTS revealed their first world tour since 2024, opening in Seoul on June 12.",
  "source_url": "https://n.news.naver.com/article/...",
  "published_at": "Mon, 05 May 2026 10:00:00 +0900",
  "language": "ko",
  "translation_quality": 0.95,
  "search_type": "news",
  "source": "naver",
  "raw": { "title": "<b>BTS</b> 월드투어 발표", "description": "...", "link": "..." }
}
```

`raw` preserves the untouched Naver record so you can recover vertical-specific fields (e.g. `lprice`, `mallName`, `bloggername`) when you need them.

### Pricing

**Pay-per-event: $0.03 per result returned.** No subscription, no minimums.

| Run | Cost |
|---|---|
| 10 results | $0.30 |
| 100 results | $3.00 |
| 0 results (no match) | $0.00 |
| Errors (rate limit, bad credentials, network) | $0.00 |

### Why this Actor

| | This Actor | Generic web scraper | Raw Naver API |
|---|---|---|---|
| Korean → English translation | ✅ Claude Haiku | ❌ | ❌ |
| Official API (ToS-safe) | ✅ | ⚠️ Often gray | ✅ |
| Flat English JSON schema | ✅ | ❌ | ❌ |
| MCP / Make / n8n / Zapier | ✅ auto-listed | Sometimes | Manual integration |
| HTML & entity cleanup | ✅ | ❌ | ❌ |
| Pay-per-result, no subscription | ✅ | Varies | n/a |

### Compatibility

- **Apify Console** — run interactively or via the Apify API
- **Apify MCP server** — exposed at `mcp.apify.com`
- **Claude Desktop / Cursor / Cline** — via the Apify MCP connector
- **Make.com, n8n, Zapier** — auto-listed through Apify's native integrations
- **Anywhere with HTTP** — call the `run-sync-get-dataset-items` endpoint

### Compliance

- Uses the **official Naver Open API** under its commercial-allowed terms (25,000 calls/day quota per app, attribution required)
- Returns **metadata and short summaries only** — never republishes full article bodies
- **No personal data collection**; no scraping; no ToS gray areas
- Source attribution preserved in the `source_url` and `source` fields of every record

### Author

Built and maintained by an independent Korean developer focused on bridging Korean public data to global AI agents. For bugs, feature requests, or vertical additions, leave a comment on the Actor page.

***

Keywords: korean search api, korea search, naver api, naver search, korean news, korean blog, korean shopping, k-pop tracker, k-beauty trends, korea data mcp, claude mcp korea, cursor mcp korea, korean to english translation, korean web search api, korea ai agent.

# Actor input Schema

## `query` (type: `string`):

Keyword to search on Naver. Korean and English are both supported.

## `search_type` (type: `string`):

Which Naver Open Search vertical to query.

## `max_results` (type: `integer`):

How many results to return (1–100).

## `translate` (type: `boolean`):

If enabled, normalize each result to English with Claude Haiku. If disabled, return raw Korean (still HTML-stripped).

## `sort` (type: `string`):

Sort by relevance (default) or by date.

## Actor input object example

```json
{
  "query": "BTS",
  "search_type": "news",
  "max_results": 10,
  "translate": true,
  "sort": "sim"
}
```

# 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 = {
    "query": "BTS"
};

// Run the Actor and wait for it to finish
const run = await client.actor("maolab/naver-search-api").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 = { "query": "BTS" }

# Run the Actor and wait for it to finish
run = client.actor("maolab/naver-search-api").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 '{
  "query": "BTS"
}' |
apify call maolab/naver-search-api --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Naver Search API → Clean English JSON",
        "description": "Korean Naver search results normalized to English JSON via the official Naver Open API. News, blog, web, and shopping verticals.",
        "version": "0.1",
        "x-build-id": "8mqzagb0a1YmVveEu"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/maolab~naver-search-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-maolab-naver-search-api",
                "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/maolab~naver-search-api/runs": {
            "post": {
                "operationId": "runs-sync-maolab-naver-search-api",
                "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/maolab~naver-search-api/run-sync": {
            "post": {
                "operationId": "run-sync-maolab-naver-search-api",
                "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": [
                    "query"
                ],
                "properties": {
                    "query": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Keyword to search on Naver. Korean and English are both supported."
                    },
                    "search_type": {
                        "title": "Search vertical",
                        "enum": [
                            "news",
                            "blog",
                            "webkr",
                            "shop"
                        ],
                        "type": "string",
                        "description": "Which Naver Open Search vertical to query.",
                        "default": "news"
                    },
                    "max_results": {
                        "title": "Max results",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many results to return (1–100).",
                        "default": 10
                    },
                    "translate": {
                        "title": "Translate to English",
                        "type": "boolean",
                        "description": "If enabled, normalize each result to English with Claude Haiku. If disabled, return raw Korean (still HTML-stripped).",
                        "default": true
                    },
                    "sort": {
                        "title": "Sort order",
                        "enum": [
                            "sim",
                            "date"
                        ],
                        "type": "string",
                        "description": "Sort by relevance (default) or by date.",
                        "default": "sim"
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
