Skip to main content
nature.com · HTTP 200

Scrape nature.com

Get any nature.com page back as clean markdown, no account needed.

Measured on this page: 131 ms · $0.000355 · 254 lines

Get a free API key Free balance on signup. No card.
Last capture nature.com/index.md markdown · 254 lines
Thank you for visiting nature.com. You are using a browser version with limited support for CSS. To obtainA study of more than one million people shows that rare genetic variants that disrupt the *FNIP1* gene are associated with a favourable metabolic profile and a roughly 60% lower risk of cardiometabolic disease than the general population. Silencing genes in the FNIP1 pathway in mice induces fat breakdown and reproduces the metabolic benefits associated with the variants in humans.### ‘Television’? The word will never catch on!One reader proposes an alternative to the word ‘television’, and another is enthralled by a meteor, in our weekly dip into *Nature*’s archive.### Privacy risks from medical AI tools are not shared equallyPrivacy attacks can reveal whether someone’s medical data was used to train an AI model. People who differ from the majority are the most vulnerable to such attacks.### Venus’s rift valleys could be its secret to staying active### How silicon-chip technology is being re-engineered for quantum computing### Electric dipoles go sideways in thin ferroelectric film### How fruit flies track the edge of odour plumesResearch Briefing29 Jul 2026### Operational Tropical Cyclone Forecasting with AI### Thermally evaporated perovskite/silicon tandems via formamidinium eutectic### An expanded codebook of human transcription factor DNA-binding specificityResults from a panel of assays that analyse different aspects of DNA sequence specificity reveal more than 100 new motifs to aid the characterization of putative human transcription factors.### Ubiquitous Kelvin–Helmholtz instabilities driving plasma mixing on the SunHigh-spatial-resolution observations of the solar photosphere reveal a far more complex and dynamic solar scene than previously observed and show that ubiquitous Kelvin–Helmholtz instabilities drive plasma mixing on the Sun.### ZFP36L2 orchestrates stress-adaptive plasticity in regeneration and cancer

The same call, in code

The run above is the whole API. A key adds browser rendering, proxies, and concurrency on nature.com.

nature-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://www.nature.com/search?q=quantum+computing&order=relevance");

// 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 npm i spider-browser

Fields and cost

The capture above cost $0.000355 to fetch. You pay $1 per GB plus $0.001 per CPU minute, and failed requests cost $0.

Article titleAuthorsAbstractJournalDOIPublished dateCitationsAccess type

Spider names these fields from the page. The keyless call returns the page as markdown. Structured JSON comes from the /fetch lane, which needs a key.