# DeepSearch Korean Stock Intelligence API – Full Financials & Price History

> DeepSearch Korean Stock Intelligence API – Full Financials & Price History 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 up to 10 years of financial statements plus 3 years of daily price history for a KRX-listed stock by ticker, paid per-query with USDC on Base Mainnet.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/financials/%7Bticker%7D/all
- 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-full-financials-price-history-0b2ff57f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8v9bZ9EAPKKIxSk97ExFj

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-full-financials-price-history-0b2ff57f
```

Example prompt: Can you pull the full financial history and daily price data for Samsung Electronics (ticker 005930) on the KRX from DeepSearch? I want to see up to 10 years of financials and 3 years of price history.

## When to prefer this

Use this endpoint when you need comprehensive fundamental financial data (income statement, balance sheet, revenue trends) and/or daily price history specifically for KRX-listed Korean stocks. Prefer this over general financial APIs when Korean market coverage and up to 10-year depth are required, and when a pay-per-query model without subscription overhead is preferred.

## Known failure modes

- Invalid or unknown KRX ticker returns an error or empty result
- Insufficient USDC balance on Base Mainnet causes payment failure (402 response)
- Non-KRX exchange tickers not supported — US or other exchange tickers will fail
- Network or upstream data unavailability causes 5xx errors
- Missing required ticker query parameter returns 400 validation error

## 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 and an array of financial periods with metrics such as revenue (in Korean won units), fiscal end dates, and related financial statement data, along with daily price history covering up to 3 years.

## 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"
      },
      "exchange": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "005930",
  "periods": [
   {
    "revenue": "133조원",
    "fiscalEndDate": "2026-03-31"
   }
  ]
 }
}
```

## More

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