Skip to main content
AI Studio  add-on for Spider.
AI & Developer
wandb.ai Verified

Weights & Biases Scraper

Extract ML experiment reports, model benchmarks, public project data, and research artifacts from Weights & Biases. Built on spider-browser .

Get started Docs
target
wandb.ai
success rate
99.9%
latency
~4ms
POST /fetch/wandb.ai/
return_format
curl -X POST https://api.spider.cloud/fetch/wandb.ai/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://wandb.ai/",
  "status": 200,
  "data": {
    "report_title": "string",
    "author": "string",
    "views": "string",
    "tags": "string",
    "description": "string",
    "framework": "string",
    "metrics": "string",
    "published_date": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from wandb.ai with a single POST. AI-resolved selectors, cached on the first call.

wandb-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://wandb.ai/fully-connected");
await page.content(10000);

const data = await page.evaluate(`(() => {
  const reports = [];
  document.querySelectorAll("[class*='ReportCard'], [class*='report-card'], article").forEach(el => {
    const title = el.querySelector("h2, h3, [class*='title']")?.textContent?.trim();
    const author = el.querySelector("[class*='author']")?.textContent?.trim();
    const desc = el.querySelector("p, [class*='description']")?.textContent?.trim();
    const views = el.querySelector("[class*='views']")?.textContent?.trim();
    const link = el.querySelector("a")?.getAttribute("href");
    if (title) reports.push({ title, author, desc, views, link });
  });
  return JSON.stringify({ total: reports.length, reports: reports.slice(0, 15) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Report titleAuthorViewsTagsDescriptionFrameworkMetricsPublished date
Rendering

React SPA handling

Full browser rendering for streaming content and dynamic React UI.

Content

Structured parsing

Extract code blocks, documentation, repository data, and metadata.

Waiting

Load completion

Smart network idle detection waits for dynamically loaded content to finish.

Related

More AI & Developer scrapers.

Start

Start scraping wandb.ai.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.