Where to Find Korean Financial Statements

DART (Data Analysis, Retrieval and Transfer System)

DART (dart.fss.or.kr) is Korea’s official financial disclosure system — equivalent to the US SEC EDGAR. All Korean listed companies must file reports here.

DART now offers an English interface and many large companies file English versions of their reports.

Key Report Types

Korean NameEnglish NameFrequency
사업보고서Annual ReportYearly
반기보고서Semi-annual ReportEvery 6 months
분기보고서Quarterly ReportEvery 3 months
공정공시Fair DisclosureAs needed

Key Financial Terms

Income Statement (손익계산서)

KoreanEnglish
매출액Revenue / Sales
영업이익Operating Income
당기순이익Net Income
EPS (주당순이익)Earnings Per Share

Balance Sheet (재무상태표)

KoreanEnglish
자산총계Total Assets
부채총계Total Liabilities
자본총계Total Equity
부채비율Debt-to-Equity Ratio

Key Ratios

KoreanEnglishWhat to Look For
PERP/E RatioLower = cheaper
PBRP/B RatioBelow 1 = undervalued
ROEReturn on EquityHigher = better
DIVDividend YieldHigher = more income

Using DART API for Automated Data

DART provides a free API for programmatic access:

import requests

DART_API_KEY = "your_dart_api_key"

def get_company_financials(corp_code):
    url = "https://opendart.fss.or.kr/api/fnlttSinglAcntAll.json"
    params = {
        "crtfc_key": DART_API_KEY,
        "corp_code": corp_code,
        "bsns_year": "2024",
        "reprt_code": "11011",  # Annual report
        "fs_div": "CFS"  # Consolidated financial statements
    }
    res = requests.get(url, params=params)
    return res.json()

Tips for Foreign Investors

  1. Use Google Translate on DART pages for Korean text
  2. Check IR pages — most large Korean companies have English IR sections
  3. Use financial data services like FnGuide or KRX Market Data for pre-translated data
  4. Focus on numbers — financial ratios are universal regardless of language