# DeepSearch Korean Stock Intelligence API – 1-Month Price History

> DeepSearch Korean Stock Intelligence API – 1-Month 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-12).

Returns the last 1 month of daily closing price data (with percent change) for a specified KRX or US-listed stock ticker

## Facts

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

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-month-price-history-a8cab5f9
```

Example prompt: Can you pull the last 1 month of daily closing prices for Samsung Electronics (KRX ticker 005930) from DeepSearch so I can see how the stock has been trending?

## When to prefer this

Use this endpoint when you need recent (1-month) daily price history for KRX-listed stocks or US symbols, especially when you want pay-per-query pricing with no subscription commitment. Prefer this over broader financial data APIs when you specifically need Korean market (KRX) coverage across 2,000+ stocks.

## Known failure modes

- Invalid or unknown ticker returns an empty data set or error response
- Non-KRX tickers without specifying exchange may return unexpected results
- Payment failure (insufficient USDC balance) returns HTTP 402 and no data
- Network timeout if the KRX data backend is slow
- Ticker with insufficient trading history may return fewer data points than expected

## 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, the period ('1m'), a count of data points (typically ~22 trading days), and an array of daily data points each with date, close price, and percent change from the prior day.

## 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": 22,
  "period": "1m",
  "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-month-price-history-a8cab5f9/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)
