New York Post Scraper avatar

New York Post Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
New York Post Scraper

New York Post Scraper

Extract full article text or the newest headlines from the New York Post -- 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

4 days ago

Last modified

Categories

Share

Extract full article text or the newest headlines from the New York Post — 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 date
  • Also fetches the newest headlines from a single site-wide feed 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 site's headline feed 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://nypost.com/2026/08/23/us-news/fresno-mulls-letting-prosecutors-carry-concealed-firearms-after-stabbing-rocks-california/"
],
"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 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://nypost.com/2026/08/23/us-news/fresno-mulls-letting-prosecutors-carry-concealed-firearms-after-stabbing-rocks-california/",
"_source": "S1-html",
"_scrapedAt": "2026-08-23T22:44:16Z",
"@type": "NewsArticle",
"headline": "Fresno mulls letting prosecutors carry concealed firearms after stabbing rocks California",
"articleBody": "Fresno County officials are pushing to let prosecutors carry concealed firearms after a shocking daylight stabbing of a senior deputy district attorney last week ...",
"articleSection": "us-news",
"datePublished": "2026-08-23T22:37:43Z",
"author": [
{ "@type": "Person", "name": "Nina Joudeh", "URL": "https://nypost.com/author/nina-joudeh/" }
],
"publisher": { "@type": "NewsMediaOrganization", "name": "California Post" },
"keywords": "... 3 more"
}

Latest headlines mode — one record per headline:

{
"_input": "latest",
"_source": "S2-rss",
"_scrapedAt": "2026-08-23T22:44:51Z",
"title": "Randi Weingarten pushes Target boycott over ICE and sparks fresh fury",
"link": "https://nypost.com/2026/08/23/us-news/american-federation-of-teachers-launches-boycott-against-target-claims-retailer-remained-silent-on-ice/",
"guid": "https://nypost.com/?post_type=article&p=40476458",
"pubDate": "Sun, 23 Aug 2026 18:43:00 -0400",
"description": "The AFT president directed families to alternative shopping sites after Target failed to respond to union letters",
"creator": "Fox News"
}
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 (headline in article mode, title in latest mode).
articleBodystringFull plain-text article content (article mode only).
authorarrayByline (article mode only) — name and author-page URL per writer.
articleSectionstringSection name (article mode only).
datePublishedstringPublication timestamp (article mode).
pubDatestringPublication timestamp (latest mode).
linkstringThe article URL (latest mode).
creatorstringByline (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).

Notes

Some articles carry publisher.name: "California Post" instead of "New York Post" — this is a regional sub-brand the publisher runs on the same domain, passed through verbatim. See CRAWLING_METHOD.md for details.