# DeepSearch Korean Stock Issue Intelligence API

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

Returns AI-analyzed, news-driven issue intelligence for a Korean stock ticker from the last 30 days, with ranked issues, sentiment labels, relevance scores, and sources.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/issue/:ticker
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-korean-stock-issue-intelligence-api-ec295034
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QnyCHUJtOUjxVwHPNsgan

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-issue-intelligence-api-ec295034
```

Example prompt: What are the top AI-analyzed news issues and their sentiment scores for Samsung Electronics (ticker 005930) on the KRX exchange over the last 30 days?

## When to prefer this

Use this endpoint when you need AI-summarized, sentiment-labeled issue intelligence specifically for Korean (KRX) stocks based on recent news, rather than raw price or financial data. Prefer this over generic news APIs when you need ranked, relevance-scored issues with structured sentiment for a specific ticker.

## Known failure modes

- Invalid or unknown ticker code returns an error or empty result
- Unsupported exchange code may default to KRX or return an error
- No recent news available for a ticker results in an empty issues list
- Malformed request missing required ticker parameter returns a 400 error
- Payment not completed or insufficient USDC balance returns a 402 Payment Required

## How this service works

AI-analyzed news-driven issue intelligence from last 30 days. Returns ranked issues with sentiment (positive/negative/neutral), relevance score, and source. Includes DeepSearch sentiment analysis.

## Output

A ranked list of news-driven issues affecting the specified stock, each with a sentiment classification (positive, negative, or neutral), a relevance score, and the originating source — all produced by DeepSearch's AI analysis of recent news over the past 30 days.

## 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": "Stock ticker code. e.g. 005930 (Samsung Electronics)"
      },
      "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-korean-stock-issue-intelligence-api-ec295034/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)
