Papers With Code Scraper
Spider read paperswithcode.com in 130 ms without a browser and returned 1,570 lines of clean markdown, including sections like "Orchard: An Open-Source Agentic Modeling Framework" and "Scaling Properties of Text Conditioning in Visual Generation".
Xiaomi Robotics · Published on Jul 16, 2026### [SmolDocling: An ultra-compact vision-language model for end-to-endmulti-modal document conversion](https://paperswithcode.com/papers/2503.11576)SmolDocling is a compact vision-language model that performs end-to-end document conversion with robust performance across various document types using 256M parameters and a new markup format.IBM Granite · Published on Mar 14, 2025### Very Large-Scale Multi-Agent Simulation in AgentScopeEnhancements to the AgentScope platform improve scalability, efficiency, and ease of use for large-scale multi-agent simulations through distributed mechanisms, flexible environments, and user-friendly tools.* 8 authors · Published on Jul 25, 2024### [AgentScope 1.0: A Developer-Centric Framework for Building AgenticApplications](https://paperswithcode.com/papers/2508.16279)AgentScope enhances agentic applications by providing flexible tool-based interactions, unified interfaces, and advanced infrastructure based on the ReAct paradigm, supporting efficient and safe development and deployment.* 23 authors · Published on Aug 22, 2025### Orchard: An Open-Source Agentic Modeling FrameworkOrchard is an open-source framework for scalable agentic modeling that enables training diverse autonomous agents through specialized recipes for coding, GUI navigation, and personal assistance tasks.Microsoft Research · Published on May 14, 2026Microsoft Research · May 14, 2026### ARIS: Autonomous Research via Adversarial Multi-Agent CollaborationARIS is an open-source research harness that uses cross-model adversarial collaboration to ensure reliable long-term research outcomes through coordinated execution, orchestration, and assurance layers.Shanghai Jiao Tong University · Published on May 4, 2026Shanghai Jiao Tong University · May 4, 2026### Scaling Properties of Text Conditioning in Visual Generation 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 paperswithcode.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://paperswithcode.com/greatest");
// 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://paperswithcode.com/greatest");
await page.content();
const data = await page.evaluate(`(() => {
const papers = [];
document.querySelectorAll(".row.infinite-item").forEach(el => {
const title = el.querySelector("h1 a")?.textContent?.trim();
const stars = el.querySelector(".entity-stars .badge")?.textContent?.trim();
const repo = el.querySelector(".item-github-link a")?.getAttribute("href");
const abstract = el.querySelector(".item-strip-abstract")?.textContent?.trim();
if (title) papers.push({ title, stars, repo, abstract: abstract?.slice(0, 200) });
});
return JSON.stringify({ total: papers.length, papers: papers.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 paperswithcode.com costs to scrape.
The capture above cost $0.002414 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 AI & Developer scrapers.
ChatGPT Scraper
Extract shared ChatGPT conversations, prompts, and AI-generated content from public links.
Hugging Face Scraper
Extract ML model cards, dataset info, leaderboard data, and paper metadata from Hugging Face.
GitHub Scraper
Extract trending repositories, star counts, contributor data, and code snippets from GitHub.
Start scraping paperswithcode.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.