# DeepSearch Korean Stock Intelligence API – Issue Context Endpoint

> DeepSearch Korean Stock Intelligence API – Issue Context Endpoint 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-14).

Returns news issues, sentiment, and relevance scores for a specific KRX-listed stock by ticker symbol

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/issue/%7Bticker%7D
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-korean-stock-intelligence-api-issue-context-endpoint-8729c0aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JXYqe9Ke4NXSrr2S_kzcn

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-intelligence-api-issue-context-endpoint-8729c0aa
```

Example prompt: Pull the latest news issues and sentiment for Samsung Electronics (ticker 005930) on the KRX exchange using DeepSearch — I want to see what stories are relevant and whether the sentiment is positive or negative.

## When to prefer this

Use this endpoint when you need structured news issue intelligence — including sentiment and relevance scoring — for a specific KRX-listed Korean stock. It is especially useful for agents doing investment research, portfolio monitoring, or financial analysis on Korean equities (KOSPI/KOSDAQ). Prefer this over generic news search when you need machine-readable sentiment and relevance scores tied directly to a stock ticker, and when pay-per-query pricing (no subscription) is preferred.

## Known failure modes

- Invalid or unknown ticker returns empty issues array or 404 error
- Missing required ticker query parameter returns 400 bad request
- Payment failure (insufficient USDC balance on Base Mainnet) returns 402 Payment Required
- Unsupported exchange code may default to KRX or return an error
- Rate limiting or network timeout if DeepSearch backend is overloaded

## 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

Returns a JSON object containing the ticker and a list of issues, each with a title, a relevance score (0–1 float), and a sentiment label (positive/negative/neutral). Useful for understanding what news stories are currently impacting a specific Korean 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": "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "issues": [
   {
    "title": "Samsung Q1 earnings beat expectations",
    "relevance": 0.95,
    "sentiment": "positive"
   }
  ],
  "ticker": "005930"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-korean-stock-intelligence-api-issue-context-endpoint-8729c0aa/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)
