๐ฐ๐ท Korea FSS Enforcement ยท ๊ธ์ต๊ฐ๋ ์ ์ ์ฌ ์กฐ์น (English)
Pricing
from $150.00 / 1,000 enforcement actions
๐ฐ๐ท Korea FSS Enforcement ยท ๊ธ์ต๊ฐ๋ ์ ์ ์ฌ ์กฐ์น (English)
Pull Korean Financial Supervisory Service (FSS) and FSC enforcement actions โ fines, license revocations, sanctions, investor warnings โ from the official FSS English mirror at fss.or.kr/eng. Bilingual (Korean + English) output with KRW + USD fine amounts.
Pricing
from $150.00 / 1,000 enforcement actions
Rating
0.0
(0)
Developer
NexGenData
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
โ๏ธ Korea FSS โ Financial Supervisory Service Enforcement Actions (English)
Track Korean financial regulator (FSS + FSC) enforcement actions โ fines, license revocations, sanctions, and investor warnings โ via the official FSS English mirror.
The Financial Supervisory Service (FSS) and Financial Services Commission (FSC) together police every KOSPI, KOSDAQ, and KONEX issuer, plus all licensed Korean banks, securities firms, insurance companies, asset managers, and crypto exchanges. This actor scrapes the official FSS English-language press-release boards at fss.or.kr/eng so you can monitor sanctions, fines, and license actions against Korean financial-services firms and listed entities in clean JSON โ no Korean reading skill required.
- โ Official FSS source โ English mirror is the supervisor's own translation
- โ Covers FSS press releases (Board B0000211) + consumer warnings (B0000399)
- โ Heuristic action-type classification: fine / warning / license_revocation / sanction
- โ Fine amounts parsed in both KRW and USD with the rate used surfaced
- โ Bilingual fields: title / summary in English with Korean originals preserved when present
- โ Filter by enforcement category, target entity name (Korean or English), and date range
- โ
Avoids
www.fsc.go.kr(which rejects external TLS) โ uses FSS English mirror as the resilient primary
โก What you get
Each enforcement-action record contains:
| Field | Description |
|---|---|
action_id | Stable identifier {bbsId}-{nttId} matching the FSS press-release URL |
target_entity_en | English target-entity name extracted from the press-release title |
target_entity_kr | Korean target-entity name (ํ๊ธ) when present in the title/body |
entity_type | firm or individual (heuristic based on title + body language) |
action_type | fine, warning, license_revocation, sanction, or other |
action_date | ISO publication date (YYYY-MM-DD) on the FSS English mirror |
title_english | Original English-language FSS press-release title |
summary_english | First ~1,000 chars of the English press-release body |
summary_korean | Korean-language fragments retained from the title/body (where present) |
fine_amount_KRW | Parsed fine amount in Korean won โ null when the action is qualitative (e.g. license revocation) |
fine_amount_USD | Same amount converted to USD using krw_per_usd_rate_used |
krw_per_usd_rate_used | The KRW/USD rate used for conversion (so you can replace it with your own rate) |
fss_or_fsc | FSS, FSC, or FSS+FSC based on which regulator the press release identifies |
source_board | press_release (B0000211) or consumer_warning (B0000399) |
source_url | Direct URL to the FSS English press-release detail page |
attachments | PDFs / supplementary files linked from the press release |
scraped_at | UTC timestamp when the actor pulled the record |
๐ฏ Use cases
- Korea-litigation defense counsel โ monitor FSS sanctions and FSC corrective orders against Korean financial-services firms within minutes of public disclosure; cite the source URL in client memos
- Short-seller / activist (Korean equity) โ flag KOSPI/KOSDAQ issuers with fresh FSS enforcement actions before the market fully prices them in
- Compliance officer at Korean listed entity โ feed an internal enforcement-action watchlist (your own firm + competitors + counterparties) for benchmarking and audit-prep
- Korean M&A diligence partner โ surface any FSS investigation, license revocation, or material fine on a target firm before the closing checklist freezes
- Cross-jurisdiction regulatory benchmarking โ overlay FSS enforcement velocity against FCA, MAS, SFC, FTC, ASIC, and FINRA for Asia-Pacific regulator-trend research
๐ How to use
Sample input โ last 30 days, all action types
{"action_type": "all","target_filter": "","date_from": "2026-05-01","date_to": "2026-05-31","max_actions": 50}
Sample input โ Samsung-related actions over the last quarter
{"action_type": "all","target_filter": "์ผ์ฑ","date_from": "2026-03-01","date_to": "2026-05-31","max_actions": 100}
Sample input โ fines only, last 90 days
{"action_type": "fine","date_from": "2026-03-01","date_to": "2026-05-31","max_actions": 200}
Python (apify-client)
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("nexgendata/korea-fss-english-enforcement").call(run_input={"action_type": "fine", "max_actions": 100})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item["target_entity_en"], item["action_type"], item["fine_amount_KRW"])
cURL
curl -X POST "https://api.apify.com/v2/acts/nexgendata~korea-fss-english-enforcement/run-sync-get-dataset-items?token=YOUR_TOKEN" \-H "Content-Type: application/json" \-d '{"action_type":"all","max_actions":25}'
๐ Sample Output

โ๏ธ Legal & data sources
- Source-of-record:
https://www.fss.or.kr/eng/bbs/B0000211/list.do(Press Releases) +https://www.fss.or.kr/eng/bbs/B0000399/list.do(Warnings for consumers) - Legal posture: FSS / FSC publish enforcement disclosure under FSCMA (์๋ณธ์์ฅ๊ณผ ๊ธ์ตํฌ์์ ์ ๊ดํ ๋ฒ๋ฅ ) ยง437 โ mandated public disclosure. Fully public. No commercial-use restriction on press releases.
- Why not
www.fsc.go.kr? The FSC main English site rejects external TLS handshakes from non-Korean IPs (Korean-domestic CA). The FSS English mirror is the resilient public surface and republishes substantially the same enforcement content. Thefss_or_fscfield surfaces which regulator the press release identifies. - Translation lag: The FSS English mirror typically lags Korean originals by 1โ3 weeks. For real-time Korean-language enforcement coverage, pair this actor with
korea-dart-opendart-filings(DART filings) andkorea-kind-disclosures(KIND exchange disclosures) once both are public. - Polite UA + rate limits: This actor identifies itself as
NexGenDataBot/1.0 (+https://thenextgennexus.com/bot; contact: hello@thenextgennexus.com)and waits 0.4-0.6s between requests to avoid burdening the FSS server.
โ FAQ
Q: Why are some fine_amount_KRW values null?
A: Many enforcement actions are qualitative โ license revocations, business-suspension orders, corrective orders, consumer warnings โ and the FSS press release does not state a monetary number. We return null rather than guessing.
Q: How accurate is the action_type classification?
A: It's a keyword-based heuristic on the English-language title and body. Items that match multiple categories (e.g. "fine + license revocation") are classified by the highest-priority signal in this order: license_revocation โ fine โ warning โ sanction. The other bucket catches general enforcement context that doesn't clearly match a category.
Q: Why doesn't target_entity_en always populate?
A: Many FSS English press releases describe the action (e.g. "Sanctions Imposed for Improper Trading") without naming the target in the title โ the firm name is only in the body. We surface what we can confidently extract from the title; for body-level entity extraction, read summary_english.
Q: Can I get the original Korean text?
A: When the FSS English mirror retains Korean characters in the title or body (which happens for proper nouns like firm names and quoted Korean-law clauses), we surface them via target_entity_kr and summary_korean. For full Korean-language coverage, use korea-dart-opendart-filings (DART originals) or the Korean-language FSS site at fss.or.kr/fss/main/main.do.
Q: How fresh is the data? A: The FSS publishes English-language press releases with a 1โ3 week translation lag behind the Korean original. The actor pulls live each run โ no caching layer.
Q: KRW/USD rate?
A: We use a stable mid-2026 reference rate of 1380 KRW/USD and surface it in krw_per_usd_rate_used so you can recalculate fine_amount_USD with your own daily-spot rate if needed.
ํ๊ตญ์ด ์ค๋ช
๋ณธ ์กํฐ๋ ํ๊ตญ ๊ธ์ต๊ฐ๋
์(FSS)์ ์๋ฌธ ๊ณต์ ์ฌ์ดํธ(fss.or.kr/eng)์์ ๊ธ์ต ์ ์ฌ ์ ๋ณด๋ฅผ ์์งํฉ๋๋ค. ๊ณผ์ง๊ธ, ์ธ๊ฐ์ทจ์, ์์ ๋ช
๋ น, ํฌ์์ ๊ฒฝ๋ณด ๋ฑ ๋ชจ๋ ์๋ฌธ ๋ณด๋์๋ฃ๋ฅผ ๊ตฌ์กฐํ๋ JSON์ผ๋ก ์ ๊ณตํฉ๋๋ค.
์ฃผ์ ์ฉ๋
- ํ๊ตญ ๊ธ์ต๊ฐ๋ ์ ์ ์ฌยท๊ณผ์ง๊ธ ๋ชจ๋ํฐ๋ง (KOSPI, KOSDAQ, KONEX ์์ฅ์ฌ + ๋ฑ๋ก ๊ธ์ตํ์ฌ)
- ํ๊ตญ ๊ธ์ต์(FSC) ๊ฒฐ์ ์ฌํญ ์ถ์
- ์ธ๊ตญ์ธ ํฌ์์ยทํด์ธ ๋ถ์๊ฐ์ฉ ํ๊ตญ ๊ธ์ต enforcement ์ ๋ณด ์๋ฌธ ๊ณต๊ธ
- ์ปดํ๋ผ์ด์ธ์คยท์ค์ฌ ์๋ฃ ์๋ํ
์ ๋ ฅ ํ๋ผ๋ฏธํฐ
action_typeโ ์ ์ฌ ์ ํ (fine๊ณผ์ง๊ธ/๊ณผํ๋ฃ,warningํฌ์์ ์ ์,license_revocation์ธ๊ฐ์ทจ์,sanctions์์ ๋ช ๋ น/์ง๊ณ,all์ ์ฒด)target_filterโ ๋์ ํ์ฌ๋ช (ํ๊ธ ๋๋ ์๋ฌธ ๋ถ๋ถ ์ผ์น ๊ฒ์, ์:์ผ์ฑ,KB,Citibank)date_from/date_toโ ์กฐํ ๊ธฐ๊ฐ (ISO ํ์, ๊ธฐ๋ณธ ์ต๊ทผ 90์ผ)max_actionsโ ์ต๋ ๊ฒฐ๊ณผ ์ (1~500)
๋ฐ์ดํฐ ์ถ์ฒ ๋ฐ ๋ฒ์ ๊ทผ๊ฑฐ
- FSS ์๋ฌธ ๊ณต์ ๋ณด๋์๋ฃ ๊ฒ์ํ (B0000211 News/Press Releases + B0000399 Warnings for consumers)
- ์๋ณธ์์ฅ๊ณผ ๊ธ์ตํฌ์์ ์ ๊ดํ ๋ฒ๋ฅ (FSCMA) ์ 437์กฐ์ ๋ฐ๋ฅธ ์๋ฌด ๊ณต์
www.fsc.go.kr์๋ฌธ ์ฌ์ดํธ๋ ์ธ๋ถ TLS ์ฐจ๋จ(๊ตญ๋ด ์ ์ฉ CA)์ด ์์ด ์ฌ์ฉ ๋ถ๊ฐํ๋ฏ๋ก, FSS ์๋ฌธ ๋ฏธ๋ฌ๋ฅผ ์ฃผ ์์ค๋ก ์ฌ์ฉํฉ๋๋ค. ๋ณด๋์๋ฃ ๋ณธ๋ฌธ์ ๋ช ์๋ ๋ฐ์ ์ฒ(FSS/FSC)๋fss_or_fscํ๋๋ก ํ์๋ฉ๋๋ค.
์๋ฌธ ๋ฏธ๋ฌ ๋ฒ์ญ ์ง์ฐ
FSS ์๋ฌธ ๋ฏธ๋ฌ๋ ํ๊ตญ์ด ์๋ณธ ๋๋น ์ฝ 1~3์ฃผ ์ง์ฐ ๊ฒ์๋๋ ๊ฒฝํฅ์ด ์์ต๋๋ค. ์ค์๊ฐ ํ๊ตญ์ด enforcement ๋ชจ๋ํฐ๋ง์ด ํ์ํ ๊ฒฝ์ฐ korea-dart-opendart-filings ์กํฐ์ ๋ณํ ์ฌ์ฉ์ ๊ถ์ฅํฉ๋๋ค.
๐ Related Actors
Pair this with other public NexGenData regulatory-enforcement actors for cross-jurisdiction Asia-Pacific compliance monitoring:
| Slug | Region | What it does |
|---|---|---|
sec-litigation-releases | ๐บ๐ธ USA | SEC enforcement actions & litigation releases (Securities Act / Exchange Act) |
ftc-enforcement-actions-scraper | ๐บ๐ธ USA | FTC consumer-protection & antitrust enforcement actions |
australia-asic-enforcement | ๐ฆ๐บ Australia | ASIC enforcement actions & infringement notices |
singapore-mas-enforcement | ๐ธ๐ฌ Singapore | MAS enforcement actions & supervisory decisions |
hk-sfc-enforcement-tracker | ๐ญ๐ฐ Hong Kong | Hong Kong SFC enforcement news & disciplinary actions |
kospi-stock-screener | ๐ฐ๐ท Korea | KOSPI + KOSDAQ market-cap screener โ join target firms by Korean name |
sgx-company-announcements | ๐ธ๐ฌ Singapore | SGX corporate disclosures โ counterpart for cross-region trading-event alerts |
Coming soon (currently private โ will publish in a future wave; not linked yet to avoid dead outbound links): korea-kind-disclosures (KRX exchange-side announcements), korea-dart-opendart-filings (DART OpenDART filings โ Korean originals supersede the English mirror for sub-week-fresh disclosures).
๐ท๏ธ About NexGenData
Production-grade Apify actors for finance, IP, regulatory, and APAC data. See all NexGenData actors โ