# Naver — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search Naver to find web results, blog posts, and news articles across Korea's largest search engine, plus get autocomplete suggestions as you type. Quickly discover Korean content and trending information without visiting the Naver site directly.

**Category:** Other | **Website:** [naver.com/search](https://naver.com/search) | **Docs:** [parse.bot/marketplace/cc785d9c-af4f-44ec-a6aa-eeb3b0b1d2a8/naver-com-api](https://parse.bot/marketplace/cc785d9c-af4f-44ec-a6aa-eeb3b0b1d2a8/naver-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-naver-com-api-cc785d9c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### autocomplete

Get Naver search autocomplete suggestions for a given query prefix. Returns up to 10 suggestions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Query prefix to get autocomplete suggestions for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-naver-com-api-cc785d9c/autocomplete \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search

Search Naver across multiple content types including web, blog, news, cafe, image, video, and shopping. Returns structured search results with titles, links, descriptions, and sources. Results are paginated with 10 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (starts at 1). |
| `query` | string | Yes | Search query string. |
| `where` | string | No | Content type to search. Accepts exactly one of: nexearch, blog, news, cafe, image, video, shop. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-naver-com-api-cc785d9c/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","where":"<string>"}'
```
