Bloomberg News Scraper avatar

Bloomberg News Scraper

Pricing

from $3.00 / 1,000 article scrapeds

Go to Apify Store
Bloomberg News Scraper

Bloomberg News Scraper

Scrape Bloomberg news headlines, summaries, authors, tickers and images from Bloomberg's public section feeds. HTTP-only, MCP-ready.

Pricing

from $3.00 / 1,000 article scrapeds

Rating

0.0

(0)

Developer

Khadin Akbar

Khadin Akbar

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

9 days ago

Last modified

Share

Pull recent Bloomberg news as clean, structured records — headlines, indexed summaries, canonical Bloomberg URLs, and publish times — across 13 topic sections. HTTP-only, fast, and MCP-ready.

What it does

Bloomberg retired its former public RSS endpoints in July 2026. This actor now reads a public news-search RSS index, keeps only Bloomberg-sourced items, and resolves each result to its canonical bloomberg.com article URL.

For every article you get:

FieldDescription
titleArticle headline
summaryBloomberg's article summary / dek
urlCanonical Bloomberg article URL
authorsList of author names
publishedAtPublish time (ISO 8601, UTC)
sectionSource section (e.g. markets, crypto)
tickersInput ticker symbols matched in the headline or indexed summary
imageUrlLead image URL
imageCaptionImage caption, when present
guidStable unique article id (the URL)
scrapedAtWhen this run captured the item (ISO 8601)

Each run also writes a machine-readable OUTPUT record to the default key-value store with the selected sections, filters, feed counts, dataset item count, charged article count, estimated event cost, and final status message.

When to use it

  • Finance / markets monitoring — watch Bloomberg coverage for specific tickers (AAPL, TSLA, IREN).
  • News agents & LLM pipelines — a clean JSON feed of Bloomberg headlines to summarize, classify, or alert on.
  • Topic tracking — filter the feeds by keyword (AI, Fed, oil) across sections.
  • Dashboards & newsletters — a recurring source of fresh Bloomberg headlines with images.

When NOT to use it

  • Full article body text is not included. Bloomberg article pages are paywalled and bot-protected; this actor returns the headline, summary, and metadata that Bloomberg publishes in its own feeds — not the full copyrighted article body.
  • It is not a search of Bloomberg's entire archive. It returns recent Bloomberg articles available in the public news index.

Sections available

markets, technology, politics, business, economics, wealth, green, crypto, pursuits, industries, citylab, equality, businessweek

Input

{
"sections": ["markets", "technology"],
"searchKeywords": ["AI", "Fed"],
"tickers": ["AAPL", "NVDA"],
"sinceHours": 24,
"maxItems": 100
}
InputTypeDefaultNotes
sectionsarray["markets"]One or more sections to pull.
searchKeywordsarray[]Keep only articles whose headline/summary contains a keyword (case-insensitive).
tickersarray[]Keep only articles whose headline or indexed summary mentions one of these symbols.
sinceHoursinteger0Only articles newer than N hours. 0 = no time filter.
maxItemsinteger100Hard cap on articles scraped & billed.
proxyConfigurationobjectoffOptional. The index works without a proxy; only enable on transient blocks.

Output sample

{
"title": "AI Cloud Provider IREN Gets Logo on Golden State Warriors Jerseys",
"summary": "The latest sign of the AI data center boom going mainstream...",
"url": "https://www.bloomberg.com/news/articles/2026-06-25/ai-neocloud-iren-...",
"authors": ["Dina Bass"],
"publishedAt": "2026-06-25T13:00:00.000Z",
"section": "technology",
"tickers": ["NMS:IREN"],
"imageUrl": "https://assets.bwbx.io/images/users/.../1200x-1.jpg",
"imageCaption": "An IREN badge will adorn Warriors game jerseys.",
"guid": "https://www.bloomberg.com/news/articles/2026-06-25/ai-neocloud-iren-...",
"scrapedAt": "2026-06-25T19:19:05.527Z"
}

Pricing

Pay-per-event:

  • Actor start: $0.00005 per run
  • Article scraped: $0.003 per article returned

A typical 100-article run costs about $0.30. You are only charged for articles actually returned — empty/filtered runs cost effectively nothing.

Use with AI agents (MCP)

This actor is MCP-ready. Point any MCP client at the Apify MCP server and the tool returns structured Bloomberg news for a query. Narrow input (sections + filters) in, clean JSON out, predictable per-article cost.

Run via API

curl -X POST "https://api.apify.com/v2/acts/khadinakbar~bloomberg-news-scraper/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"sections":["markets","crypto"],"tickers":["BTC"],"maxItems":50}'
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('khadinakbar/bloomberg-news-scraper').call({
sections: ['technology'],
searchKeywords: ['AI'],
maxItems: 50,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

FAQ

Does it return the full article text? No. Bloomberg article bodies are paywalled and bot-protected. This actor returns the headline, summary, author, tickers, image, and publish time that Bloomberg publishes in its public feeds.

Do I need a proxy? No. The public index normally responds without one. A proxy option exists only for transient network issues.

Why are some articles missing tickers or images? Not every Bloomberg article carries stock-symbol tags or a lead image. Those fields are populated when present and null/empty otherwise.

How fresh is the data? Feeds reflect Bloomberg's latest published articles, typically updated continuously through the day.

This actor collects publicly indexed Bloomberg headlines, summaries, canonical links, and metadata. It does not bypass paywalls or return full article bodies. Bloomberg content remains the property of Bloomberg L.P.; use the output in accordance with applicable terms and law.