# Korea DART Disclosures Feed

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

Returns a structured feed of recent official regulatory filings for a Korean listed company from Korea's DART (Data Analysis, Retrieval and Transfer System), with type, date, submitter, and English viewer links.

## Facts

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

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-disclosures-feed-fda305f1
```

Example prompt: Can you pull the last 3 months of DART filings for Samsung Electronics (ticker 005930) from Korea DART and show me the filing type, date, and an English link for each one?

## When to prefer this

Use this endpoint when you need authoritative, primary-source regulatory disclosure data for Korean listed companies directly from DART — the official FSS filing system. Prefer it over web scraping or news aggregators when you need structured, citable filings with direct source links. It is especially valuable for due diligence, compliance monitoring, or investment research on KOSPI/KOSDAQ-listed issuers.

## Known failure modes

- Company not found if ticker, corp code, or name doesn't match a DART-registered issuer
- No filings returned if the look-back window or category filter yields zero results
- Ambiguous name match if multiple companies share a similar name — prefer ticker or corp code for precision
- DART upstream unavailability causing delayed or empty responses
- Invalid ticker format (must be exactly 6 digits) returning an error

## 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 DART filings for the queried company, each entry including the filing type/category, submission date, submitter name, and a direct English-language DART viewer URL linking to the primary source document.

## 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-disclosures-feed-fda305f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
