Berlingske Scraper avatar

Berlingske Scraper

Pricing

from $0.40 / 1,000 results

Go to Apify Store
Berlingske Scraper

Berlingske Scraper

Extract article metadata and headlines from berlingske.dk, Denmark's oldest and one of its largest newspapers -- no account or API key needed.

Pricing

from $0.40 / 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

2 days ago

Last modified

Categories

Share

Extract full article details or the newest headlines from Berlingske, one of Denmark's largest and oldest newspapers — no account or subscription needed.

Why use this actor

  • No account or login required
  • Rich article detail: headline, subheadline, byline, publish/update dates, category, tags, and full body text
  • Also fetches the newest headlines site-wide without visiting each article individually
  • Stable JSON output suitable for pipelines, spreadsheets, or databases
  • Automatic retries on temporary network hiccups

Note on paid articles: Berlingske limits some articles to subscribers. This actor returns everything that's publicly visible and flags such records with _paywalled: true.

How it works

  1. Give the actor one or more article URLs, or switch to "latest" mode.
  2. In article mode, the actor opens each URL and pulls out every publicly available detail about the story.
  3. In latest mode, the actor reads the site-wide newest-articles feed and returns the freshest 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.berlingske.dk/internationalt/to-boern-meldes-draebt-efter-droneangreb-i-rusland"
],
"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 site-wide.
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 — the real record includes the full category/tag list and lead image variants):

{
"_input": "https://www.berlingske.dk/internationalt/to-boern-meldes-draebt-efter-droneangreb-i-rusland",
"_source": "S1-nextdata",
"_scrapedAt": "2026-08-24T00:42:43Z",
"_paywalled": false,
"id": "...",
"title": "To børn meldes dræbt efter droneangreb i Rusland",
"headline": "To børn meldes dræbt efter droneangreb i Rusland",
"articleType": "NewsArticle",
"categories": [{ "title": "Internationalt" }],
"publicationDate": "2026-08-24T...",
"payWall": null,
"body": [
{ "type": "ParagraphNode", "children": [{ "type": "TextNode", "value": "To børn er blevet dræbt, og yderligere ni personer..." }] }
/* ... 12 more paragraph blocks */
],
"articleText": "To børn er blevet dræbt, og yderligere ni personer, herunder syv børn, er blevet såret i et droneangreb... /* full text, 1784 chars total */"
}

Latest headlines mode — one record per headline:

{
"_input": "latest:berlingske.dk",
"_source": "S2-sitemap",
"_scrapedAt": "2026-08-24T00:42:43Z",
"title": "To børn meldes dræbt efter droneangreb i Rusland",
"link": "https://www.berlingske.dk/internationalt/to-boern-meldes-draebt-efter-droneangreb-i-rusland",
"publicationDate": "2026-08-24T00:12:46.000Z"
}
FieldTypeDescription
_inputstringThe URL you requested, or "latest:berlingske.dk" in latest mode.
_sourcestringWhich strategy produced this record.
_scrapedAtstringUTC timestamp of when the record was captured.
_paywalledbooleantrue if the article is behind Berlingske's paid tier (article mode only).
title / headlinestringArticle headline.
categoriesarraySection/category the article belongs to (article mode).
bodyarrayThe raw paragraph blocks as published (article mode).
articleTextstringFull article text, flattened into plain text for convenience (article mode).
linkstringThe article URL.

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