# Korea DART Corporate Filings Daily List

> Korea DART Corporate Filings Daily List is a paid API for AI agents from jp-data-api-production.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the daily list of Korean corporate disclosure filings (DART/FSS) for KOSPI/KOSDAQ listed companies for a given date.

## Facts

- Endpoint: GET https://jp-data-api-production.up.railway.app/kr/filings/list
- Price: $0.02/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-corporate-filings-daily-list-cf42bf3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XVnOMnRBUNnwTKmeK2lab

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-corporate-filings-daily-list-cf42bf3c
```

Example prompt: Pull the full list of Korean corporate filings from DART for January 15, 2025 — I need to see what KOSPI and KOSDAQ companies submitted disclosures that day for my Asia equity research.

## When to prefer this

Use this endpoint when you need structured, official Korean corporate disclosure data from DART/FSS for a specific date, particularly for Korea equity research, chaebol monitoring, or Asia Pacific due diligence. Prefer this over web scraping or unofficial sources for authoritative FSS filing data.

## Known failure modes

- Missing required 'date' query parameter — returns validation error
- Invalid date format (not YYYYMMDD) — returns parsing error
- Future date or non-trading day with no filings — may return empty list
- Network/upstream FSS data unavailability — returns 5xx error
- Payment not completed (x402) — returns 402 Payment Required

## How this service works

Korean corporate disclosures (DART, Financial Supervisory Service official data): daily list of filings by KOSPI/KOSDAQ listed companies. Use for Korea equity research, chaebol monitoring, Asia market due diligence. Companion to the Japan EDINET endpoint.

## Output

A list of corporate disclosure filings submitted to Korea's DART (Financial Supervisory Service) on the specified date, including company names, filing types, and relevant metadata for KOSPI/KOSDAQ listed companies.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "YYYYMMDD"
      }
     }
    }
   },
   "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-corporate-filings-daily-list-cf42bf3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jp-data-api-production.up.railway.app](https://www.zero.xyz/host/jp-data-api-production.up.railway.app/llms.txt)
