# DeepSearch KRX News Articles Feed

> DeepSearch KRX News Articles Feed 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-14).

Returns raw recent news articles (last 14 days) for a KRX-listed company, including title, summary, publisher, published date, and article URL.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/news/:ticker
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-krx-news-articles-feed-024aafc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8tF8_D_JBZuhWZ2AR7pe8

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-krx-news-articles-feed-024aafc0
```

Example prompt: Pull the raw news articles from the last 14 days for KRX ticker 005930 — I want the titles, summaries, publishers, dates, and article URLs so I can read the original sources myself.

## When to prefer this

Use this endpoint when you need the actual source articles — titles, URLs, publishers, and publication dates — rather than an AI-generated summary or issue analysis. Prefer this over the AI news briefing or issue intelligence endpoints when you want to cite original sources, verify facts, or let the user read the raw articles themselves. Best for research tasks where provenance and traceability matter.

## Known failure modes

- Invalid or non-KRX ticker returns empty results or 404
- Ticker not found on KRX returns an error or empty array
- No news available in the last 14 days returns an empty list
- Payment of $0.05 USDC not completed results in 402 Payment Required
- Malformed ticker format (not 6 digits) causes validation error

## How this service works

Raw news articles from the last 14 days for a KRX-listed company. Returns title, summary, publisher, published date, and article URL. Use when you need the source articles rather than an analyzed summary.

## Output

A list of raw news articles from the past 14 days for the specified KRX-listed company, each containing: article title, short summary, publisher name, publication date, and a direct URL to the original article.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "005930",
   "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-krx-news-articles-feed-024aafc0/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)
