Aftonbladet Scraper
Pricing
from $1.20 / 1,000 results
Aftonbladet Scraper
Extract article metadata and headlines from aftonbladet.se, Sweden's largest newspaper -- no account or API key needed.
Pricing
from $1.20 / 1,000 results
Rating
0.0
(0)
Developer
Faisal Ahdan naufal
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
9 days ago
Last modified
Categories
Share
Extract full article details or the newest headlines from Aftonbladet, Sweden's largest newspaper — no account or subscription needed.
Why use this actor
- No account or login required
- Rich article detail: headline, description, byline, publish/update dates, section, topic keywords, word count, and lead image
- Full article text for the site's free content, with a clear flag on any article behind the paid tier
- 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
How it works
- Give the actor one or more article URLs, or switch to
"latest"mode. - In article mode, the actor opens each URL and pulls out every publicly available detail about the story.
- In latest mode, the actor reads the site-wide newest-articles feed and returns the freshest stories.
- 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.aftonbladet.se/nyheter/a/Bxv450/eu-kritiserar-israels-bosattarplan"],"maxConcurrency": 4,"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }}
Latest headlines mode:
{"mode": "latest","limit": 10,"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }}
| Field | Type | Description |
|---|---|---|
mode | string | "article" (default) — extract one or more article URLs. "latest" — fetch the newest headlines site-wide. |
url | string | A single article URL. Used in article mode. |
urls | array | Multiple article URLs to extract in one run. Used in article mode. |
limit | integer | Max headlines returned in latest mode. Default 10, max 50. |
maxConcurrency | integer | How many articles to fetch in parallel in article mode. Default 4. |
proxyConfiguration | object | Apify Proxy settings. Residential is on by default. |
Output
Article mode — one record per URL (truncated here for readability — the real record includes full author and image details):
{"_input": "https://www.aftonbladet.se/nyheter/a/Bxv450/eu-kritiserar-israels-bosattarplan","_source": "S1-jsonld","_scrapedAt": "2026-08-24T00:32:26Z","_paywalled": false,"headline": "EU kritiserar Israels bosättarplan","datePublished": "2026-08-23T...","wordCount": 70,"articleSection": "Nyheter","description": "Kritiken växer mot Israels bosättningsprojekt på den ockuperade Västbanken...","keywords": "Israel, EU, Västbanken","isAccessibleForFree": true,"publisher": { "@type": "NewsMediaOrganization", "name": "Aftonbladet" },"articleBody": "Kritiken växer mot Israels bosättningsprojekt på den ockuperade Västbanken. Nu uppmanar även EU landet till att stoppa projektet... /* full text, 751 chars total */"}
Latest headlines mode — one record per headline:
{"_input": "latest:aftonbladet.se","_source": "S2-rss","_scrapedAt": "2026-08-24T00:32:26Z","title": "EU kritiserar Israels bosättarplan","link": "https://www.aftonbladet.se/nyheter/a/Bxv450/eu-kritiserar-israels-bosattarplan?utm_medium=rss","pubDate": "Sun, 23 Aug 2026 22:10:00 +0200","description": "Kritiken växer mot Israels bosättningsprojekt på den ockuperade Västbanken."}
| Field | Type | Description |
|---|---|---|
_input | string | The URL you requested, or "latest:aftonbladet.se" in latest mode. |
_source | string | Which strategy produced this record. |
_scrapedAt | string | UTC timestamp of when the record was captured. |
_paywalled | boolean | true if the article is behind Aftonbladet's paid tier (article mode only). |
headline / title | string | Article headline. |
description | string | Article summary/dek. |
wordCount | integer | Word count as reported by the source (article mode). |
articleSection | string | Section/category the article belongs to (article mode). |
keywords | string | Comma-separated topic tags (article mode). |
articleBody | string | Full article text where publicly available. |
link | string | The 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).