News24 Articles Scraper
Spider read news24.com in 153 ms without a browser and returned 1,046 lines of clean markdown.
Naspers Labs: Empowering young South Africans* Food Lover’s protests Cape Town store closure, but developer says size justifies cost* Explosive allegations: Ramsamy implicates Johnson in forgery in Crime Intelligence case* Ramaphosa asks court to dismiss case as Macpherson highlights need for legal expropriation* St Stithians College pupil, alumnus found dead at Mpumalanga holiday homeFull list of lottery resultsFree to listen for subscribersNews24’s free audiobook for subscribers this month is Wisani and the Bafokeng Brothers by Thandi Moagi.Scammers are sending fake traffic fine SMSes. Have you got one?Oops! Something went wrong, please try again later.All JSE data delayed by at least 15 minutesPlay today’s crossword, wordflower, and sudoku.Arm sleeves explained: The outdoor gear upgrade you didn’t know you needed 05 AugBuying a drone? Here are the rules in SA 31 JulWhy I was wrong about the DJI Neo 2 30 JulTV buying guide 2026: Everything you need to know 29 JulGarmin Cirqa Smart Band: Serious fitness tracking without the expensive watch or... 28 JulGoPro Mission 1 takes on the DJI Osmo Pocket 4 Pro and Insta360 Luna 22 JulNews24 launches new tech to protect whistleblowersFrom Babita Deokaran to Mpho Mafole, whistleblowers remain at the forefront of News24’s intensive investigative work.First African pupils at NASA’s global space competition help team become world champs 06 Aug‘Buddy is all I have left’: Strangers help Sea Point fire survivor and dog find... 06 AugPupils get dream Joburg Theatre debut as they take on AI and influencer culture in... 06 AugPercy the pangolin rescued from poachers’ car and flown to freedom, 5 arrested 05 AugEditorial feedback and complaintsContact the public editor with feedback for our journalists, complaints, queries or suggestions about articles on News24.Toyota GR Cup: Back to Aldo Scribante as East London falls away 05 AugA financial safety net for when you need it most 29 Jul 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 news24.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.news24.com");
// 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!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.news24.com");
const data = await page.extractFields({
article: "article, div.quote",
image: "img, figure, div.quote img",
});
console.log(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 news24.com costs to scrape.
The capture above cost $0.000766 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 news24.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.