# DeepSearch KRX Stock 3-Month Daily Price History

> DeepSearch KRX Stock 3-Month Daily Price History 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 ~65 daily closing price data points (date, close price, change %, and market cap) for the past 3 months for a given KRX or US stock ticker.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/stock/:ticker/3m
- 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-stock-3-month-daily-price-history-0ee8e359
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ubGvdsxZQA6mEWH3O5J3S

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-3-month-daily-price-history-0ee8e359
```

Example prompt: Can you pull the last 3 months of daily closing prices for Samsung Electronics (KRX ticker 005930) from DeepSearch — I want to see the date, close price, daily change percent, and market cap for each day?

## When to prefer this

Choose this endpoint when you need recent short-term (3-month) daily price history including market cap and daily change percentage for KRX-listed Korean stocks or supported US symbols. It is cost-effective at $0.05 USDC per call and ideal for trend analysis, short-term momentum checks, or building charts covering the past quarter. Use sibling endpoints for longer historical windows (up to 3 years) or fundamental financial data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty dataset
- Unsupported exchange code causes a bad request response
- Ticker provided in wrong format (e.g. 5 digits instead of 6 for KRX) may return no data
- Payment failure via x402 protocol blocks the request
- Rate limiting or upstream data unavailability may cause timeouts

## How this service works

3-month daily closing price history (~65 data points). Returns date, close price, change %, and market cap.

## Output

An array of approximately 65 daily records covering the past 3 months, each containing the trading date, closing price, percentage change from the prior day, and market capitalization for the requested stock ticker.

## 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 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-krx-stock-3-month-daily-price-history-0ee8e359/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)
