Cnbc Article Scraper avatar

Cnbc Article Scraper

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Cnbc Article Scraper

Cnbc Article Scraper

Scrape full article content, title, authors, and metadata from cnbc.com. Supports `mode: latest` for live CNBC headline feed. HTTP-only, no browser

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Xtractoo

Xtractoo

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

2 days ago

Last modified

Categories

Share

Extract full article text, title, authors, and metadata from any cnbc.com article URL. This actor sends only HTTP requests - no browser needed - making it fast, lightweight, and reliable for bulk data collection.

Why Use This Actor?

  • Financial news monitoring - track CNBC markets and economy coverage programmatically.
  • Sentiment analysis - feed CNBC articles into NLP pipelines to gauge market sentiment.
  • Research aggregation - combine CNBC content with other financial sources for comprehensive market monitoring.
  • Earnings coverage - CNBC provides same-day earnings analysis across all major market sectors.

How It Works

This actor uses only HTTP requests - no browser, no Selenium, no Playwright. Articles are extracted in seconds with RAM usage well under 256 MB.

Input

{
"url": "https://www.cnbc.com/2026/04/13/example-article.html",
"urls": [
"https://www.cnbc.com/2026/04/13/article-one.html",
"https://www.cnbc.com/2026/04/13/article-two.html"
]
,
"mode": "article",
"limit": 10
}

Output

{
"url": "https://www.cnbc.com/2026/05/15/china-us-oil-iran-war-strait-hormuz-trump-xi.html",
"source": "CNBC",
"title": "How China and U.S. eased the Middle East oil shock and kept prices from spiking even higher",
"description": "",
"content": "China and the United States have provided critical support to the oil market and helped ease the huge supply disruption in the Middle East and kept energy prices from surging even higher. The oil market has lost about 10 million barrels per day (bpd) of exports from the Persian Gulf due to Iran's blockade of the Strait of Hormuz, according to theInternational Energy Agency's latest update this week....",
"image": "https://image.cnbcfm.com/api/v1/image/108304701-1778409617168-gettyimages-2273981240-AFP_A9RN2PU.jpeg?v=1778409629&w=1920&h=1080",
"language": "en",
"word_count": 619,
"published_date": "",
"modified_date": "",
"authors": [],
"categories": "",
"tags": ""
}

Fetch Latest News

Set mode to "latest" to fetch the newest article URLs and titles from CNBC instead of extracting a single article.

Input:

{
"mode": "latest",
"limit": 10
}

Output - array of objects:

[
{
"url": "https://www.cnbc.com/2026/04/20/us-iran-war-middle-east-conflict-peace-deal-strait-hormuz-shipping-ceasefire-tensions.html",
"title": "'Resumption of hostilities': seized ship, vessel attacks push U.S.-Iran ceasefire toward brink",
"published_date": "Mon, 20 Apr 2026 08:05:03 GMT",
"source": "CNBC"
}
//...
]

Source: https://search.cnbc.com/rs/search/combinedcms/view.xml?... (RSS feed)

Cron Schedule: Auto-Fetch Newest Articles

Combine mode: "latest" and mode: "article" to keep a fresh feed running on autopilot:

  1. Schedule a recurring run of this Actor with {"mode": "latest", "limit": 20} via Apify Schedules (UI ▸ Schedules ▸ Create new). A cron expression like */30 * * * * runs it every 30 minutes.
  2. Webhook the dataset of the latest run into another Actor run with mode: "article" and the new URLs as input — Apify integrations let you chain runs via the "Actor finished" webhook without any glue code.
  3. The article-mode run extracts the full body, image, authors, and metadata for each URL and appends to your master dataset.

Common cron expressions:

FrequencyCron
Every 15 minutes*/15 * * * *
Hourly0 * * * *
Every 6 hours0 */6 * * *
Daily at 06:00 UTC0 6 * * *

Other News Actors

Need a different news source? All actors in this collection:

ActorSource
aljazeera-scraperAl Jazeera
apnews-scraperAP News
bbc-scraperBBC News
cnbc-scraperCNBC
forbes-scraperForbes
fortune-scraperFortune
ft-scraperFinancial Times
guardian-scraperThe Guardian
msn-scraperMSN News
nytimes-scraperNew York Times
reuters-scraperReuters
scmp-scraperSouth China Morning Post
techcrunch-scraperTechCrunch
upi-scraperUPI
yahoo-finance-scraperYahoo Finance
smart-news-loaderAny URL - adaptive HTTP loader
bloomberg-scraperBloomberg

All actors support mode: "latest" for fetching newest article URLs from each source.