Investing.com News Scraper avatar

Investing.com News Scraper

Pricing

from $18.00 / 1,000 results

Go to Apify Store
Investing.com News Scraper

Investing.com News Scraper

Extract full article text, related tickers, and reader comments from investing.com news articles. No browser or account needed - fast HTTP-only extraction.

Pricing

from $18.00 / 1,000 results

Rating

0.0

(0)

Developer

Xtractoo

Xtractoo

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Extract full article text, related financial instruments, and reader comments from investing.com news articles — no account, no browser, no setup required.

Why use this actor

  • Full article text, not just a headline — the complete body of each news article, in clean plain text.
  • Rich financial context — every financial instrument mentioned in the article (stocks, indices, forex) is captured alongside the news, including name, exchange ticker, pair ID, and live price change for the day.
  • Reader sentiment included — comment threads are collected in full: author name, message text, like/dislike counts, and threaded replies with parent reference.
  • No login or subscription required — works on regular investing.com news without an account.
  • Stable, consistent JSON — the same fields are returned for every article, making it easy to pipe directly into a database, spreadsheet, or downstream pipeline.
  • Latest headlines on demand — use mode: "latest" to pull the newest article URLs without processing individual articles.

How it works

  1. You give the actor one or more investing.com article URLs — or set mode to "latest" to fetch fresh headlines automatically.
  2. The actor fetches the full article: headline, body text, byline, publication date, and featured image.
  3. Any financial instruments linked in the article are collected as ticker records — name, exchange symbol, pair ID, and current-day price change.
  4. Reader comments are captured in full, including threaded replies with like and dislike counts.
  5. Results appear in the dataset immediately, ready to download as JSON, CSV, or Excel.

Pagination, retries, and IP management are handled automatically — you only need to provide URLs.


Input

{
"url": "https://www.investing.com/news/stock-market-news/no-ceiling-in-sight-this-analyst-just-raised-his-kospi-target-again-4691696",
"mode": "article",
"limit": 10
}
FieldTypeDescription
urlstringSingle investing.com article URL to extract.
urlsarrayMultiple article URLs to extract in one run.
modestring"article" (default) — extract a single URL. "latest" — return the newest headlines from the feed.
limitintegerMaximum number of articles returned in latest mode. Default: 10.

Output

{
"url": "https://www.investing.com/news/stock-market-news/no-ceiling-in-sight-this-analyst-just-raised-his-kospi-target-again-4691696",
"source": "Investing.com",
"news_id": 4691696,
"title": "\"No ceiling in sight\": This analyst just raised his KOSPI target again",
"description": "\"No ceiling in sight\": This analyst just raised his KOSPI target again",
"content": "Investing.com -- KB Securities raised its KOSPI year-end target by 40% to 10,500 points, citing artificial intelligence-led earnings upgrades as the index pushed to successive record highs in recent sessions. KB strategist Euntaek Lee said the ongoing rally \"is faster and stronger\" than Korea's famous \"three lows\" bull market of 1986-89, which returned eight times in four years...",
"published_date": "2026-05-15T10:43:39Z",
"modified_date": "2026-05-15T10:43:39Z",
"authors": ["Vahid Karaahmetovic"],
"image": "https://i-invdn-com.investing.com/news/moved_LYNXNPEB7B0FP_L.jpg",
"canonical_url": "https://www.investing.com/news/stock-market-news/no-ceiling-in-sight-this-analyst-just-raised-his-kospi-target-again-4691696",
"language": "en_US",
"word_count": 338,
"source_name": "Investing.com",
"comments_count": 7,
"tickers": [
{
"symbol": "KOSPI",
"ticker": "KS11",
"pair_id": 37426,
"pair_type": "indice",
"change_pct": "-6.12%",
"change_color": "red"
},
{
"symbol": "SK Hynix Inc",
"ticker": "000660",
"pair_id": 43430,
"pair_type": "Equities",
"change_pct": "-7.66%",
"change_color": "red"
},
{
"symbol": "Samsung Electronics Co",
"ticker": "005930",
"pair_id": 43433,
"pair_type": "Equities",
"change_pct": "-8.61%",
"change_color": "red"
}
],
"comments": [
{
"comment_id": "46853946",
"parent_id": null,
"username": "Fahim Bin Abdullah",
"text": "hi",
"date": "22 hours ago",
"likes": 1,
"dislikes": 0
},
{
"comment_id": "46854111",
"parent_id": null,
"username": "Stephen Corsaro",
"text": "to the moon I say , ignore the troubles.",
"date": "21 hours ago",
"likes": 1,
"dislikes": 0
},
"... 5 more"
]
}
FieldTypeDescription
urlstringThe article URL that was scraped.
sourcestringAlways "Investing.com".
news_idintegerInvesting.com's internal article number, taken from the URL.
titlestringArticle headline.
descriptionstringLead sentence or summary from the article's metadata.
contentstringFull article body, cleaned of ads and navigation.
published_datestringISO 8601 publication timestamp.
modified_datestringISO 8601 last-updated timestamp.
authorsarrayJournalist or staff byline, e.g. ["Vahid Karaahmetovic"].
imagestringFeatured article image URL.
canonical_urlstringThe definitive URL for this article (may differ from input for regional editions).
languagestringContent language code, e.g. "en_US".
word_countintegerApproximate word count of the article body.
source_namestringProvider label, e.g. "Investing.com" or a wire agency name.
comments_countintegerTotal number of comments on the article.
tickersarrayRelated financial instruments (see below).
commentsarrayReader comments and threaded replies (see below).

Tickers

Each item in tickers:

FieldTypeDescription
symbolstringDisplay name of the instrument, e.g. "KOSPI", "SK Hynix Inc".
tickerstringExchange ticker code, e.g. "KS11", "000660".
pair_idintegerInvesting.com's internal instrument ID.
pair_typestringAsset class: "indice", "Equities", "currency", etc.
change_pctstringPrice change for the day, e.g. "-6.12%". null if unavailable.
change_colorstring"green" (up) or "red" (down). null if change is zero or unavailable.

Comments

Each item in comments:

FieldTypeDescription
comment_idstringInvesting.com's unique comment ID.
parent_idstring|nullID of the parent comment for replies; null for top-level comments.
usernamestringDisplay name of the commenter.
textstringComment body text.
datestringRelative timestamp as shown on the page, e.g. "22 hours ago".
likesintegerNumber of upvotes on this comment.
dislikesintegerNumber of downvotes on this comment.

Fetch latest news

Set mode to "latest" to retrieve the newest article URLs from the feed without extracting full articles.

Input:

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

Output — array of objects:

[
{
"url": "https://www.investing.com/news/stock-market-news/fda-drug-center-head-fired-after-commissioners-exit-4694463",
"title": "FDA drug center head fired after commissioner's exit",
"published_date": "2026-05-16 16:54:26",
"source": "Investing.com",
"news_id": 4694463
},
{
"url": "https://www.investing.com/news/stock-market-news/blackrock-weighs-5-bln10-bln-investment-in-spacex-ipo-the-information-4694475",
"title": "BlackRock weighs $5 bln-$10 bln investment in SpaceX IPO — The Information",
"published_date": "2026-05-16 16:49:02",
"source": "Investing.com",
"news_id": 4694475
}
]

Source: https://www.investing.com/rss/news.rss


Cron schedule: auto-fetch newest articles

  1. Schedule a recurring run with {"mode": "latest", "limit": 20} via Apify Schedules — e.g. */30 * * * * for every 30 minutes.
  2. Webhook the resulting URLs into another run with mode: "article" to extract full content. Apify's "Actor finished" webhook lets you chain runs without glue code.

Common cron expressions:

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

Notes

  • Comments are sourced from the same page load as the article — no separate request is needed. Returns an empty array if the article has no comments.
  • Tickers reflect the price change as of the time the article was fetched. The values are live at scrape time, not historical.

Other News Actors

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 loader