# DeepSearch Korean Stock News API

> DeepSearch Korean Stock News API is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-12).

Retrieves recent news articles for a specific KRX-listed stock by 6-digit ticker code

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/news/%7Bticker%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-korean-stock-news-api-0495c3e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PyJGDOYPtEre6gfGda5RB

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 deepsearch-korean-stock-news-api-0495c3e2
```

Example prompt: Pull the latest news articles for Samsung Electronics — KRX ticker 005930 — from DeepSearch so I can see what's been written about them recently.

## When to prefer this

Use this endpoint when you need news article coverage specifically for KRX-listed Korean stocks identified by their 6-digit ticker codes. Prefer this over general web search when you want structured, publisher-attributed news data with publication timestamps for Korean equity research or monitoring corporate news flow on the Seoul exchange.

## Known failure modes

- Invalid or non-existent ticker returns empty articles array or 404
- Non-KRX ticker format (e.g. NYSE symbol) may return no results
- Payment failure (402) if USDC balance on Base Mainnet is insufficient
- Rate limiting or network timeout if the underlying news index is unavailable
- Ticker with no recent coverage returns empty articles list

## How this service works

Up to 10 years of financials + 3 years of daily price history for all 2,000+ KRX stocks. Pay-per-query with USDC on Base Mainnet — no subscription.

## Output

A JSON object containing the ticker symbol and an array of news articles, each with a URL, headline title, publisher name (often Korean media outlets), and publication date — covering recent news relevant to the specified KRX stock.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "000660",
   "exchange": "KRX"
  }
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "6-digit KRX ticker code"
      },
      "exchange": {
       "type": "string",
       "description": "Exchange code. Default: KRX"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "005930",
  "articles": [
   {
    "url": "https://...",
    "title": "Samsung posts record Q1 profit",
    "publisher": "연합뉴스",
    "publishedAt": "2026-04-30"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-korean-stock-news-api-0495c3e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.deepsearch.com](https://www.zero.xyz/host/x402.deepsearch.com/llms.txt)
