# DeepSearch Korean Stock Financials – 5-Year Context

> DeepSearch Korean Stock Financials – 5-Year Context 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-14).

Returns up to 5 years of financial statements and contextual data for a KRX-listed stock by ticker symbol, paid per-query with USDC on Base Mainnet.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/financials/%7Bticker%7D/5y
- Price: $0.15/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-financials-5-year-context-d1b3f8ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-i_IHuI_RGkis3fqZmSKS

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-financials-5-year-context-d1b3f8ba
```

Example prompt: Pull the 5-year financials context from DeepSearch for Samsung Electronics — their KRX ticker is 005930 — I want to see revenue and fiscal period data.

## When to prefer this

Choose this endpoint when you need multi-year financial statement data for KRX-listed Korean stocks (KOSPI/KOSDAQ) and prefer pay-per-query USDC pricing over a subscription. Ideal for agents performing fundamental analysis, financial research, or due diligence on Korean equities without committing to a recurring plan.

## Known failure modes

- Invalid or unknown KRX ticker returns an error or empty periods array
- Insufficient USDC balance on Base Mainnet causes payment failure and no data returned
- Ticker not found on specified exchange returns 404 or empty result
- Network timeout on x402 payment protocol results in no data and no charge
- Malformed ticker string (e.g. wrong format) returns a 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, each with metrics such as revenue (in Korean won notation) and fiscal end dates, covering up to 5 years of historical data.

## 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-financials-5-year-context-d1b3f8ba/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)
