Bloomberg News Scraper
Spider read bloomberg.com in 2.4 s without a browser and returned 28 lines of clean markdown.
# US Core CPI Picks Up on Services; Goods Inflation More SubduedUS Economy: Core CPI Picks Up at Fastest Pace Since JanuaryProvide news feedback or report an error](https://www.bloomberg.com/help/question/submit-feedback-news-coverage/)Send a tip to our reporters](https://www.bloomberg.com/tips/)Take our Survey](https://bmedia.iad1.qualtrics.com/jfe/form/SV_0xQ0jMsQ7QLRlj0?slug=2025-08-12/us-core-cpi-picks-up-to-fastest-pace-since-january-on-services)Underlying US inflation accelerated in July though the cost of tariff-exposed goods didn’t rise as much as feared, boosting expectations that Federal Reserve officials will lower interest rates when they meet next month.The core consumer price index, which excludes the often volatile food and energy categories, increased 0.3% from June, the strongest pace since the start of the year, according to Bureau of Labor Statistics data out Tuesday. That was in line with economists’ forecasts, as was the overall CPI on a monthly basis. The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on bloomberg.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.bloomberg.com/technology");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.bloomberg.com/technology");
await page.content(10000);
const data = await page.evaluate(`(() => {
const articles = [];
document.querySelectorAll("article [data-component='headline']").forEach(el => {
const headline = el.querySelector("a")?.textContent?.trim();
const link = el.querySelector("a")?.href;
if (headline) articles.push({ headline, link });
});
return JSON.stringify({ total: articles.length, articles: articles.slice(0, 15) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What bloomberg.com costs to scrape.
The capture above cost $0.000546 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More News scrapers.
Google News Scraper
Extract news articles, headlines, publication sources, and trending stories from Google News.
BBC News Scraper
Extract news articles, headlines, and publication data from BBC News.
CNN Scraper
Extract news articles, headlines, and video content data from CNN.
Start scraping bloomberg.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.