# DeepSearch Korean Stock Intelligence API – 2-Year Financials

> DeepSearch Korean Stock Intelligence API – 2-Year Financials 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 up to 2 years of quarterly/annual financial data (revenue, operating profit, etc.) for a specified KRX-listed stock ticker

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/financials/%7Bticker%7D/2y
- 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-korean-stock-intelligence-api-2-year-financials-041d1455
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rKxKKGns9maDXW2t0aHcq

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-2-year-financials-041d1455
```

Example prompt: Can you pull the last 2 years of financials for Samsung Electronics on the KRX — I want to see revenue and operating profit by quarter? The ticker is 005930.

## When to prefer this

Use this endpoint when you need fundamental financial data (revenue, operating profit) for any of the 2,000+ stocks listed on the Korea Exchange (KRX), covering a 2-year historical window. Prefer this over broader data providers when you specifically need Korean market data paid per-query with no subscription overhead, and when you need recent financial period data in a structured JSON format.

## Known failure modes

- Invalid or unknown KRX ticker returns an error or empty periods array
- Payment failure (insufficient USDC balance) returns HTTP 402
- Ticker not listed on KRX returns a not-found error
- Malformed query parameters return a 400 validation error
- Network timeout or upstream data unavailability returns a 503

## 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 fiscal end date, revenue (in Korean won notation), and operating profit. Covers up to 2 years of historical quarterly/annual data for the requested KRX stock.

## 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",
    "operatingProfit": "57조원"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-korean-stock-intelligence-api-2-year-financials-041d1455/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)
