# DeepSearch KRX Dividend Schedule

> DeepSearch KRX Dividend Schedule 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 the dividend schedule for a KRX-listed stock, including ex-dividend date, payment date, amount per share in KRW, and a forecast flag.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/dividend/:ticker
- 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-schedule-c8c6dc9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nGWcCWCymRPv_d93GffCS

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-schedule-c8c6dc9d
```

Example prompt: What is the dividend schedule for Samsung Electronics (KRX ticker 005930) — specifically the ex-dividend date, payment date, and how much per share in KRW I'd receive?

## When to prefer this

Use this endpoint when an investor or agent needs specific dividend schedule details — ex-dividend date, payment date, and per-share amount in KRW — for a KRX-listed Korean stock. Prefer this over general financial data endpoints when the query is specifically about dividend income timing or yield potential for a Korean equity.

## Known failure modes

- Invalid or non-existent KRX ticker returns an error or empty result
- Ticker for a non-dividend-paying company returns no dividend records
- Missing required ticker query parameter returns a 400 validation error
- Payment of $0.05 USDC fails or is rejected, blocking the response
- Exchange code mismatch may return no results if the stock is listed on a different exchange

## How this service works

Dividend schedule for a KRX-listed company. Returns ex-dividend date, payment date, amount per share (KRW), and forecast flag. Use when an investor asks about dividend payout dates or income potential.

## Output

Returns structured dividend data for the specified KRX ticker including the ex-dividend date, payment date, dividend amount per share in Korean Won (KRW), and a flag indicating whether the figure is a forecast or confirmed value.

## 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",
       "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"
    }
   }
  }
 }
}
```

## More

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