# DeepSearch KRX Dividend History API

> DeepSearch KRX Dividend History API 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 dividend history and forecasts for a KRX-listed stock by 6-digit ticker code

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/dividend/%7Bticker%7D
- 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-krx-dividend-history-api-0bbb94ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tY_57gP4aDHl1xiS3Rezo

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-krx-dividend-history-api-0bbb94ce
```

Example prompt: What are the dividend history and any upcoming dividend forecasts for Samsung Electronics (KRX ticker 005930) on the KRX exchange?

## When to prefer this

Use this endpoint when you need structured dividend data — historical payments and near-term forecasts — for any of the 2,000+ KRX-listed stocks. It covers up to 10 years of data and is ideal when you need base dates, payment dates, ex-dividend dates, and forecast flags without subscribing to a full financial data platform. Prefer this over generic financial APIs when Korean market-specific dividend accuracy and granularity are required.

## Known failure modes

- Invalid or non-existent KRX ticker returns empty dividends array or 404
- Ticker format must be 6-digit numeric string — incorrect format may return an error
- Payment required (402) if USDC payment on Base Mainnet is not provided
- Stocks with no dividend history return an empty dividends array
- Rate limiting or network timeout for high-frequency calls

## 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 dividend records, each with dividend amount, base date, payment date, ex-dividend date (if available), and a boolean flag indicating whether the entry is a forecast or historical fact.

## 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",
       "description": "6-digit KRX ticker code"
      },
      "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": {
  "ticker": "005930",
  "dividends": [
   {
    "amount": 372,
    "base_date": "2026-03-31",
    "is_forecast": false,
    "payment_date": "2026-05-29",
    "ex_dividend_date": null
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-krx-dividend-history-api-0bbb94ce/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)
