Korea Herald Scraper avatar

Korea Herald Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Korea Herald Scraper

Korea Herald Scraper

Extract full article text or the newest headlines from The Korea Herald (koreaherald.com), South Korea's leading English-language newspaper -- no account or API key needed.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Faisal Ahdan naufal

Faisal Ahdan naufal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Extract full article text or the newest headlines from The Korea Herald (koreaherald.com), South Korea's leading English-language newspaper — no account or subscription needed.

Why use this actor

  • No account or login required — fully free, ad-supported site with no paywall
  • Full article text included, not just a summary — headline, description, byline, publish/update dates, lead image
  • English-language coverage of South Korean politics, business, and culture, plus wire coverage of major world news
  • Also fetches the newest headlines from the site's rolling news sitemap without visiting each article individually
  • Stable JSON output suitable for pipelines, spreadsheets, or databases
  • Automatic retries on temporary network hiccups

How it works

  1. Give the actor one or more article URLs, or switch to "latest" mode to get the newest stories automatically.
  2. In article mode, the actor opens each URL and pulls out the full text and every publicly available detail about the story.
  3. In latest mode, the actor reads the site's rolling news sitemap and returns the newest stories.
  4. Results stream into your dataset, ready to download as JSON, CSV, or Excel.

You don't need to manage retries, rate limits, or figure out the site's internal data format — the actor handles all of that.

Input

Article mode (default):

{
"mode": "article",
"urls": [
"https://www.koreaherald.com/article/10848093"
],
"maxConcurrency": 4,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}

Latest headlines mode:

{
"mode": "latest",
"limit": 10,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
FieldTypeDescription
modestring"article" (default) — extract one or more article URLs. "latest" — fetch the newest headlines.
urlstringA single article URL. Used in article mode.
urlsarrayMultiple article URLs to extract in one run. Used in article mode.
limitintegerMax headlines returned in latest mode. Default 10, max 50.
maxConcurrencyintegerHow many articles to fetch in parallel in article mode. Default 4.
proxyConfigurationobjectApify Proxy settings. Residential is on by default.

Output

Article mode — one record per URL (truncated here for readability):

{
"_input": "https://www.koreaherald.com/article/10848093",
"_source": "S1-html",
"_scrapedAt": "2026-08-24T01:46:47Z",
"headline": "Seoul light festival returns with iconic art, live music",
"description": "Seoul Light DDP 2026 Fall will run Sept. 3-13 at Dongdaemun Design Plaza, organizers said Thursday. The event features media art installations inspired by video",
"articleBody": "Works inspired by video artist Nam June Paik, painter Yoo Young-kuk to light up DDP in fall\n\nSeoul Light DDP 2026 Fall will run Sept. 3-13 at Dongdaemun Design Plaza, organizers said Thursday...",
"datePublished": "2026-08-21T09:32:00+09:00",
"dateModified": "2026-08-21T09:32:00+09:00",
"author": "Moon Ki-hoon",
"image": "https://res.koreaherald.com/..."
}

Latest headlines mode — one record per headline:

{
"_input": "latest",
"_source": "S2-sitemap",
"_scrapedAt": "2026-08-24T01:46:44Z",
"title": "Kazakhstan's ruling party wins parliamentary elections: exit polls",
"link": "https://www.koreaherald.com/article/10849749",
"publicationDate": "2026-08-24T10:43:41+09:00"
}
FieldTypeDescription
_inputstringThe URL you requested, or "latest", for traceability.
_sourcestringWhich strategy produced this record.
_scrapedAtstringUTC timestamp of when the record was captured.
headline / titlestringArticle headline.
descriptionstringTeaser/summary (article mode only).
articleBodystringFull plain-text article content (article mode only).
authorstringByline (article mode only).
datePublished / dateModifiedstringPublication timestamps (article mode).
imagestringLead image URL (article mode).
linkstringArticle URL (latest mode).
publicationDatestringPublication timestamp (latest mode).

A record with _error instead of article fields means that URL could not be processed (for example, "_error": "not_found" for a removed article).