Fox News Scraper avatar

Fox News Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Fox News Scraper

Fox News Scraper

Extract full article text or the newest headlines from Fox News (foxnews.com) -- 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

a day ago

Last modified

Categories

Share

Extract full article text or the newest headlines from Fox News (foxnews.com), one of the most-visited news websites in the United States — no account or subscription needed.

Why use this actor

  • No account or login required — Fox News Digital is fully free, ad-supported, no paywall
  • Full article text included, not just a summary — headline, description, byline, section, keywords, word count, publish/update dates, lead image
  • Latest headlines mode returns the full article HTML body inline, not just teasers
  • 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 Google Publisher feed and returns the newest stories, including full body HTML.
  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.foxnews.com/media/tom-homan-fires-back-florida-democrat-ridiculous-ice-racial-profiling-claim"
],
"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 25.
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.foxnews.com/media/tom-homan-fires-back-florida-democrat-ridiculous-ice-racial-profiling-claim",
"_source": "S1-jsonld",
"_scrapedAt": "2026-08-23T23:50:40Z",
"headline": "Tom Homan fires back at Florida Democrat over 'ridiculous' ICE racial profiling claim",
"description": "Tom Homan calls himself an \"equal opportunity deporter\" while rejecting Angie Nixon's claims that ICE agents racially profile Black Americans.",
"articleBody": "Border czar Tom Homan rejected Florida Democratic Senate nominee Angie Nixon's warning that Immigration and Customs Enforcement (ICE) agents would racially profile Black Americans...",
"articleSection": "media",
"datePublished": "2026-08-24T00:00:00Z",
"dateModified": "2026-08-24T00:00:00Z",
"author": "Nora Moriarty",
"keywords": "...",
"wordCount": 517,
"isAccessibleForFree": true,
"image": "https://static.foxnews.com/..."
}

Latest headlines mode — one record per headline (includes full body HTML):

{
"_input": "latest",
"_source": "S2-rss",
"_scrapedAt": "2026-08-23T23:50:39Z",
"title": "Enes Kanter Freedom met with hostile WNBA fans en route to Fever-Sky matchup",
"link": "https://www.foxnews.com/outkick-sports/enes-kanter-freedom-hostile-wnba-fans-fever-sky-matchup",
"guid": "https://www.foxnews.com/outkick-sports/enes-kanter-freedom-hostile-wnba-fans-fever-sky-matchup",
"pubDate": "Sun, 23 Aug 2026 19:37:35 -0400",
"description": "Video shows Enes Kanter Freedom being swarmed by a hostile crowd outside the sold-out Indiana Fever-Chicago Sky WNBA game at Wintrust Arena.",
"contentHtml": "<p>Ex-NBA center <a href=\"...\">Enes Kanter Freedom</a> was met by a hostile crowd outside Chicago's Wintrust Arena on Sunday...</p>",
"categories": ["fnc", "Fox News", "fox-news/outkick/outkick-sports", "..."]
}
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.
articleBodystringFull plain-text article content (article mode only).
contentHtmlstringFull article body as HTML, including inline links (latest mode only).
articleSectionstringSection name (article mode only).
authorstringByline (article mode only).
keywordsstringTag keyword(s) (article mode only).
wordCountintegerSite-reported word count (article mode only).
isAccessibleForFreebooleanWhether the site flags this as free content — always true on sampled articles.
imagestringLead image URL (article mode only).
categoriesarraySection/topic tags, mix of internal IDs and labels (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).