# DeepSearch 2-Year Quarterly Financial History (KRX Stocks)

> DeepSearch 2-Year Quarterly Financial History (KRX Stocks) 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 8 quarters (~2 years) of key financial metrics for a Korean stock ticker, including revenue, operating profit, net income, total assets, and equity.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/financials/:ticker/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-2-year-quarterly-financial-history-krx-stocks-4b393458
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MtFcm0FR9o5xL-SecWbdW

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-2-year-quarterly-financial-history-krx-stocks-4b393458
```

Example prompt: Can you pull the last 2 years of quarterly financials for Samsung Electronics (ticker: 005930) on the KRX — I need revenue, operating profit, net income, total assets, and equity so I can do a year-over-year comparison?

## When to prefer this

Use this endpoint when you need a compact 2-year quarterly view of a Korean (KRX) company's key financials for trend analysis or year-over-year comparisons. Prefer this over the longer 10-year endpoint when only recent history is needed and lower cost per call is preferred.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty data
- Ticker exists on a different exchange and the optional exchange parameter is needed to disambiguate
- Rate limiting or payment failure results in a 402 Payment Required response
- Network timeout or service unavailability returns a 5xx error
- Ticker for a non-KRX stock returns no data since coverage is limited to Korean exchange stocks

## How this service works

2-year quarterly financial history (~8 quarters): revenue, operating profit, net income, total assets, equity. Use for year-over-year comparisons.

## Output

A JSON response containing approximately 8 quarters of financial data for the requested ticker, with fields for revenue, operating profit, net income, total assets, and equity per quarter, enabling year-over-year trend analysis.

## 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"
      },
      "exchange": {
       "type": "string"
      }
     }
    }
   },
   "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-2-year-quarterly-financial-history-krx-stocks-4b393458/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)
