# DeepSearch Korean Stock Intelligence API – 1-Year Daily Price History

> DeepSearch Korean Stock Intelligence API – 1-Year Daily Price History is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-12).

Returns up to 252 daily closing prices and percent changes for a given KRX (or US) stock ticker over a 1-year period

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/stock/%7Bticker%7D/1y
- Price: $0.15/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-intelligence-api-1-year-daily-price-history-de336402
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nN5koSCOVtupOvEPFMWef

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-1-year-daily-price-history-de336402
```

Example prompt: Can you pull the last year of daily closing prices and daily percent changes for Samsung Electronics on the KRX — their ticker is 005930?

## When to prefer this

Choose this endpoint when you need structured daily closing price history for Korean (KRX) stocks specifically, especially when you want pay-per-query access without a subscription. Ideal for agents performing ad-hoc equity research, backtesting signals, or charting Korean equities. Prefer this over broader financial data providers when the focus is KRX-listed stocks and cost-per-call transparency is important.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty dataset
- Unsupported exchange code causes a bad request response
- Payment failure (insufficient USDC balance or x402 payment rejected) blocks the request
- Rate limiting or quota issues if the payment mechanism fails
- Ticker valid but no data available for the requested period returns an empty dataPoints array

## 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 up to 252 daily data points for the requested ticker over a 1-year window, each with a date, closing price (in KRW or local currency), and daily percent change. Also includes total count of data points and the period label.

## 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 or US symbol"
      },
      "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": {
  "count": 252,
  "period": "1y",
  "ticker": "005930",
  "dataPoints": [
   {
    "date": "2026-05-28",
    "close": 299500,
    "changePercent": -2.44
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-korean-stock-intelligence-api-1-year-daily-price-history-de336402/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)
