# Korea DART Company Financials

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

Fetches normalized income statement, balance sheet, and cash flow data from Korean DART filings for a given company and fiscal year, mapped to a clean English-labeled schema with XBRL citations.

## Facts

- Endpoint: GET https://api.agentstools.dev/korea/financials
- Price: $0.03/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-financials-2a44ea3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DuOFabMo-4HCuoUtNtO_S

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-financials-2a44ea3d
```

Example prompt: Pull the consolidated annual income statement, balance sheet, and cash flow for Samsung Electronics (ticker 005930) for fiscal year 2023 from DART, with English labels.

## When to prefer this

Choose this endpoint when you need structured, English-labeled Korean company financials from official DART regulatory filings, especially when you want XBRL-cited data for auditability. Prefer this over raw DART API calls or scraping Korean financial portals when you need a normalized schema across income statement, balance sheet, and cash flow without parsing Korean XBRL yourself.

## Known failure modes

- Company not found in DART if name/ticker/corp_code is invalid or ambiguous
- No filing available for the requested year or report period
- DART API unavailability causing upstream data fetch failure
- Requested fiscal year before 2015 minimum boundary
- Partial data if company only files separate (not consolidated) statements
- XBRL data missing for older or smaller company filings

## How this service works

Normalized company financials from Korea DART filings. Give a ticker, corp code or name plus a year and get income statement, balance sheet and cash flow lines mapped to one clean schema with English labels, each value cited to its XBRL account id and filing. Compact cited JSON instead of raw Korean statements.

## Output

A compact JSON object containing normalized financial statement lines (income statement, balance sheet, and/or cash flow) with English-language labels, numeric values, XBRL account IDs, and references to the source DART filing. Values are mapped to a consistent schema regardless of the original Korean filing format.

## 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": [
      "year"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Company name in English or Korean"
      },
      "year": {
       "type": "integer",
       "minimum": 2015,
       "description": "Business (fiscal) year, 2015 or later"
      },
      "basis": {
       "enum": [
        "consolidated",
        "separate"
       ],
       "type": "string",
       "description": "Statement basis, default consolidated"
      },
      "report": {
       "enum": [
        "annual",
        "half",
        "q1",
        "q3"
       ],
       "type": "string",
       "description": "Report period, default annual"
      },
      "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"
      },
      "statements": {
       "type": "array",
       "items": {
        "enum": [
         "income",
         "balance",
         "cashflow"
        ],
        "type": "string"
       },
       "description": "Optional filter of which statements to return"
      }
     }
    }
   },
   "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-financials-2a44ea3d/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)
