Skip to main content
AI Studio  add-on for Spider.
globalnews.ca

Globalnews Scraper

Extract news articles, headlines, and publication data from Globalnews.

No key required
curl -X POST https://api.spider.cloud/scrape \
  -H "Content-Type: application/json" \
  -d '{"url": "https://globalnews.ca/", "return_format": "markdown"}'

This exact call produced the response beside it. Get a key →

Content
943 lines 28.7 KB markdown
Render
No browser plain request is enough
Fetch time
147 ms one measured fetch
This fetch cost
$0.000696 bandwidth plus compute
Global News | Breaking, Latest News and Video for Canada https://globalnews.ca/
* Could a vaccine intercept brewing colon cancer? Testing underway Dr. Stacy Norton was only seven years old when her mother died of colon cancer, one of several family members struck by aggressive tumors at unusually young ages. Health Aug 6
* EXCLUSIVE: Key members of India’s Bishnoi gang named in Canadian intelligence report The gang’s leaders are profiled in the report by the Canada Border Services Agency’s Intelligence and Investigations Directorate. Canada Aug 6
* Marine One carrying Trump had close call with plane near D.C. airport Officials were investigating what happened after a commercial jet took off from Ronald Reagan Washington National Airport on Tuesday just as Marine One was approaching. U.S. News Aug 5
* Carney says possibility of jets at Billy Bishop airport not nixed ‘forever’ Prime Minister Mark Carney's government rejected Ford's vision last month following a consultation largely opposed to the idea of jets. Canada Aug 5
* Mexican influencer Cesar Gastelum shot dead during livestream Gastelum, who had nearly 600,000 followers on TikTok and was best known for posting comedy skit videos, was streaming outside ⁠a fast food restaurant when he was shot. Crime Aug 5
* SpaceX rocket crashed on the moon, scientists say: ‘100% confidence’ Once imaging is returned, scientists say it will confirm what NASA predicted: that the rocket’s upper stage unintentionally slammed into the moon, carving out a large crater. Trending Aug 5
Click or hit Enter to load 24 more Stories
* Ring camera captures man in clown costume uttering threats outside family home Crime
* ‘We’ll see’ if Canada, U.S. get a ‘win-win’ deal before Trump’s double tariff August deadline: Carney Canada
* American booze back on shelf? Carney, premiers deliberate response to Trump’s new tariffs on Canada Canada
* WestJet passengers are on the move again as union representing flight attendants reaches deal Canada
HTTP 200

You just saw the output.

That was one page. A key runs the same call across every URL on globalnews.ca, with browser rendering, proxies, and concurrency. Sign up and a free balance lands on your account. No card required to test.

  • Free balance on signup, no card
  • Failed requests cost $0
  • robots.txt respected by default

The same call, in code.

The keyless call above returns markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on globalnews.ca.

globalnews-ca-scraper.ts
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://globalnews.ca");

// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();

console.log(data);
await spider.close();
ready to run · spider-browser, no selectors

Ready for volume? Get an API key →

Fields you can pull.

HeadlineSummaryAuthorPublished DateCategoryArticle URL

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 globalnews.ca costs to scrape.

The capture above cost $0.000696 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
See the full pricing →

More News scrapers.

Start scraping globalnews.ca.

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.