# DeepSearch KRX Stock Price History - 3 Month

> DeepSearch KRX Stock Price History - 3 Month 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).

Returns daily closing prices and percent changes for a KRX-listed stock over a 3-month window

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/stock/%7Bticker%7D/3m
- 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-krx-stock-price-history-3-month-d915fd7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LF3cN2axi7wbaf_xNfNKY

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-stock-price-history-3-month-d915fd7e
```

Example prompt: Can you pull the last 3 months of daily closing prices for Samsung Electronics (ticker 005930) on the KRX exchange?

## When to prefer this

Use this endpoint when you need short-term (3-month) daily price history specifically for KRX-listed Korean equities, particularly when you want pay-per-query access without a subscription commitment. Ideal for agents doing ad-hoc Korean market research, backtesting signals, or enriching financial analysis with recent price trends for KOSPI or KOSDAQ stocks.

## Known failure modes

- Invalid or non-existent KRX ticker returns an error or empty data set
- Payment failure (insufficient USDC on Base Mainnet) blocks the request with a 402 response
- Unsupported exchange code may default to KRX or return an error
- US symbol queries may fail if the exchange parameter is not set correctly
- Rate limiting or network issues may cause transient failures

## 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, period label ('3m'), a count of data points (typically ~65 trading days), and an array of daily entries each with a date, closing price (in KRW), and percent change from the prior day.

## 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 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": 65,
  "period": "3m",
  "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-krx-stock-price-history-3-month-d915fd7e/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)
