# Pocket Factory Korean News Search

> Pocket Factory Korean News Search is a paid API for AI agents from api.pocketfactory.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Searches Korean news articles using a natural-language query and returns a list of matching articles with titles, URLs, and publication dates

## Facts

- Endpoint: GET https://api.pocketfactory.ai/v1/kr/news/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pocket-factory-korean-news-search-3e84de3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y4MFtLUL_Wtfeg0viDWxU

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability pocket-factory-korean-news-search-3e84de3e
```

Example prompt: Search Korean news for recent articles about real estate policy and give me 10 results — I need the titles, URLs, and dates.

## When to prefer this

Use this endpoint when you specifically need to search Korean-language news sources with a natural-language query. It is ideal for agents that need to gather Korean media coverage on a topic, monitor Korean press on policy or business events, or retrieve source-linked articles with publication dates. Prefer this over general web search when Korean news specifically is required.

## Known failure modes

- Missing required 'q' query parameter returns a validation error
- Limit outside 1-20 range may be rejected or clamped
- No articles found returns an empty articles array with count 0
- Network or upstream news source errors return a server error
- Non-Korean or very obscure queries may return few or no results

## How this service works

포켓팩토리 공식 웹사이트 — 작은 웹 제품과 브라우저 게임을 만드는 개인 스튜디오

## Output

Returns a JSON object containing the total article count, the original query string, and a list of up to 20 articles each with a title, URL, and publication date (ISO date string).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Natural-language Korean news query"
      },
      "limit": {
       "type": "integer",
       "description": "Number of articles, 1-20 (default 5)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 5,
  "query": "real estate policy",
  "articles": [
   {
    "url": "https://www.hankookilbo.com/...",
    "title": "...",
    "published_at": "2026-08-05"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pocket-factory-korean-news-search-3e84de3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pocketfactory.ai](https://www.zero.xyz/host/api.pocketfactory.ai/llms.txt)
