Chicago Tribune Scraper avatar

Chicago Tribune Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Chicago Tribune Scraper

Chicago Tribune Scraper

Extract full article text or the top headlines from the Chicago Tribune -- 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 top headlines from the Chicago Tribune — no account or subscription needed.

Why use this actor

  • No account or login required
  • Full article text included, not just a summary — headline, byline, section, keywords, and publish/update dates
  • Also fetches the current top headlines from the homepage 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 current top headlines 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 homepage and returns the current top-story headlines.
  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.chicagotribune.com/2026/08/23/cps-budget-problems-back-to-school/"
],
"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 current top 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 30.
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.chicagotribune.com/2026/08/23/cps-budget-problems-back-to-school/",
"_source": "S1-html",
"_scrapedAt": "2026-08-23T23:06:36Z",
"@type": "NewsArticle",
"headline": "CPS budget uncertainty looms as students head back to school",
"articleBody": "When teacher assistant Jared Edwards was laid off at Curtis Elementary in Roseland this summer, it was the second consecutive year his position had been cut ...",
"articleSection": "Education",
"creator": ["Kate Armanini"],
"datePublished": "2026-08-23T...",
"isAccessibleForFree": false
}

Latest headlines mode — one record per headline:

{
"_input": "latest",
"_source": "S2-homepage",
"_scrapedAt": "2026-08-23T23:06:24Z",
"title": "CPS budget uncertainty looms as students head back to school",
"link": "https://www.chicagotribune.com/2026/08/23/cps-budget-problems-back-to-school/"
}
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.
articleBodystringFull plain-text article content (article mode only).
creator / authorarray / objectByline (article mode only).
articleSectionstringSection name (article mode only).
isAccessibleForFreebooleanPublisher's own metering flag — false does not mean the text is truncated; full text is present regardless (see CRAWLING_METHOD.md).
linkstringThe article URL (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).

Notes

Latest mode returns the current homepage's top-story headlines rather than a strict reverse-chronological feed — the Chicago Tribune's RSS/sitemap endpoints are gated behind a bot-verification challenge that isn't required to reach individual articles. See CRAWLING_METHOD.md for details.