# Korea DART Company Disclosures Feed

> Korea DART Company Disclosures Feed is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a structured feed of recent official regulatory filings for a Korean listed company from DART (Data Analysis, Retrieval and Transfer System), with English viewer links.

## Facts

- Endpoint: GET https://payai.agentstools.dev/korea/disclosures
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/korea-dart-company-disclosures-feed-d07c2d8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ECGl-EARfFb_uCWLecaND

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 korea-dart-company-disclosures-feed-d07c2d8d
```

Example prompt: Pull the last 3 months of official DART disclosures for Samsung Electronics (ticker 005930) and show me each filing's type, date, submitter, and a link I can open in English.

## When to prefer this

Use this endpoint when you need official, primary-source regulatory disclosure data for Korean listed companies from DART. Prefer it over general web scraping or news APIs when you need structured, typed filing metadata with direct source links. It is especially useful for compliance research, investment due diligence, earnings monitoring, or governance tracking on Korean equities where data must be traceable to the official Korean FSS regulator.

## Known failure modes

- Unknown company: if the ticker, corp code, or name does not match any DART-registered issuer, returns empty or error response
- Ambiguous name: company name matches multiple issuers, requiring disambiguation via ticker or corp code
- No filings in window: company has no filings within the requested months window, returning empty list
- Invalid ticker format: non-6-digit or non-numeric ticker causes query failure
- Rate or payment error: x402 micropayment not completed, request rejected

## How this service works

Recent official disclosures of a Korean listed company from Korea DART. Give a ticker, corp code or name and get a structured feed of the issuer's filings with type, date, submitter and an English viewer link. Cited to the primary source.

## Output

A structured list of recent DART filings for the requested Korean company, each entry including the filing type code and label, submission date, submitter name, and a direct English-language DART viewer link. Results are cited to the primary DART source.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "name": {
       "type": "string",
       "description": "Company name in English or Korean"
      },
      "type": {
       "enum": [
        "A",
        "B",
        "C",
        "D",
        "E",
        "F",
        "G",
        "H",
        "I",
        "J"
       ],
       "type": "string",
       "description": "Optional filing-category filter, A through J"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Max filings to return, default 20"
      },
      "months": {
       "type": "integer",
       "maximum": 36,
       "minimum": 1,
       "description": "Look-back window in months, default 6"
      },
      "ticker": {
       "type": "string",
       "description": "6-digit Korean stock code, e.g. 005930"
      },
      "corp_code": {
       "type": "string",
       "description": "8-digit DART corp code, e.g. 00126380"
      }
     }
    }
   },
   "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/korea-dart-company-disclosures-feed-d07c2d8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
