Detik News Scraper avatar

Detik News Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Detik News Scraper

Detik News Scraper

Extract full article text or the newest headlines from detikNews (news.detik.com), Indonesia's largest online news portal -- 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

5 days ago

Last modified

Categories

Share

Extract full article text or the newest headlines from detikNews (news.detik.com), Indonesia's largest online news portal — 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
  • Ad-slot placeholder text is automatically filtered out of the article body
  • Also fetches the newest headlines from the detikNews Google 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 detikNews 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://news.detik.com/berita/d-8631766/bupati-pelalawan-liburkan-sekolah-yang-terdampak-kabut-asap-karhutla"
],
"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://news.detik.com/berita/d-8631766/bupati-pelalawan-liburkan-sekolah-yang-terdampak-kabut-asap-karhutla",
"_source": "S1-jsonld+html",
"_scrapedAt": "2026-08-23T23:35:58Z",
"headline": "Bupati Pelalawan Liburkan Sekolah yang Terdampak Kabut Asap Karhutla",
"description": "Bupati Pelalawan, Zukri, meliburkan sekolah di Ukui dan Kerumutan akibat kabut asap dari karhutla...",
"articleBody": "Bupati Pelalawan, Zukri, meliburkan sekolah yang terdampak kabut asap akibat kebakaran hutan dan lahan (karhutla) di wilayahnya...",
"datePublished": "2026-08-24T06:15:35+07:00",
"dateModified": "2026-08-24T06:15:42+07:00",
"author": "Raja Adil Siregar",
"image": "https://akcdn.detik.net.id/community/media/visual/2026/08/23/kebakaran-hutan-1787492964521_169.jpeg?w=1200"
}

Latest headlines mode — one record per headline:

{
"_input": "latest",
"_source": "S2-sitemap",
"_scrapedAt": "2026-08-23T23:35:57Z",
"title": "Bupati Pelalawan Liburkan Sekolah yang Terdampak Kabut Asap Karhutla",
"link": "https://news.detik.com/berita/d-8631766/bupati-pelalawan-liburkan-sekolah-yang-terdampak-kabut-asap-karhutla",
"publicationDate": "2026-08-24T06:15:00+00:00",
"keywords": ["bupati pelalawan", "kabut asap", "karhutla", "ispa", "kebakaran hutan"]
}
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, ad placeholders removed (article mode only).
authorstringByline (article mode only).
datePublished / dateModifiedstringPublication timestamps (article mode).
imagestringLead image URL (article mode only).
publicationDatestringPublication timestamp (latest mode).
keywordsarrayTag keywords (latest mode only).

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