Spider Browser vs. Kernel vs. Browserbase: 999 URLs benchmarked
Kernel benchmarked cold start. We benchmarked reliability: 999 URLs, 254 domains, 18 categories, 100% success and 2.5s median end-to-end latency.
Note: This benchmark is maintained at Spider Research. Results below are the February 17, 2026 snapshot.
Kernel recently published a benchmark showing they’re 5.8x faster than Browserbase at creating browsers. Fast cold starts are a useful metric, but cold start speed doesn’t tell you whether your agent can actually get data from the page it navigated to.
We ran two benchmarks. First, the same kind of speed test Kernel used (session creation, page navigation, end-to-end latency) so you can compare directly. Then a harder test: 999 URLs across 254 domains and 18 categories, including sites behind the major bot-protection services. The result was a 100% pass rate with zero failures.
Everything is open source. You can reproduce every number in this post.
What Kernel measured vs. what we measured
Kernel’s blog compares cold start latency and end-to-end browser creation speed against Browserbase using browserbench, a third-party tool that times browser creation and basic page loads.
That answers one question: how fast can you get a browser? It doesn’t answer the questions that matter when your agent is doing real work:
- Can the browser bypass bot detection on protected sites?
- Does automation succeed across hundreds of different domains?
- What happens when a site serves a challenge page or blocks the first request outright?
- How fast is the full pipeline: connect, navigate, extract content, take a screenshot?
Our benchmarks cover both speed and reliability.
Speed benchmark
50 measured iterations (after 10 warmup rounds) using the spider-browser SDK, navigating to google.com and waiting for domcontentloaded. This mirrors the browserbench methodology.
| Metric | Median | Avg | p95 | Min |
|---|---|---|---|---|
| Session creation (connect + auth + init) | 705ms | 710ms | 793ms | 612ms |
| Page navigate (goto -> domcontentloaded) | 1,821ms | 1,920ms | 3,001ms | 1,014ms |
| Session release | 0ms | 0ms | 0ms | 0ms |
| End-to-end total | 2,509ms | 2,630ms | 3,665ms | 1,804ms |
All 50 runs succeeded, a 100% success rate, with zero failures and zero timeouts.
Session creation is 705ms at the median. That’s WebSocket connection, authentication, and full protocol init. The session is immediately ready to navigate with no cold start penalty, because Spider Browser connects to pre-warmed browser instances. Session release is instant; closing the WebSocket ends the session with no VM to tear down.
Total end-to-end: 2.5 seconds to connect, navigate, and close. Kernel claims 3.72x faster than Browserbase end-to-end, but neither publishes raw millisecond numbers for the full pipeline.
Reliability benchmark
Speed on google.com is one thing. Reliability across the real web is another.
We built a dataset of 999 URLs across 254 unique domains in 18 categories, from simple static sites to some of the most aggressively protected properties on the web.
The corpus
| Category | URLs | Examples |
|---|---|---|
| Technology | 239 | GitHub, Stack Overflow, Medium, HackerNews |
| E-Commerce | 128 | Amazon, eBay, Walmart, Target, Shopify stores |
| News | 116 | CNN, BBC, NYT, Reuters, AP News |
| Government | 73 | IRS, SSA, CDC, state government portals |
| Finance | 64 | Bloomberg, CoinDesk, Yahoo Finance, NerdWallet |
| Education | 59 | MIT, Coursera, Khan Academy, university sites |
| Entertainment | 45 | YouTube, Twitch, Spotify, IMDb |
| Social | 41 | Reddit, Twitter/X, LinkedIn, Discord |
| Travel | 40 | Booking, TripAdvisor, Airbnb, Expedia |
| Reference | 54 | Wikipedia, StackExchange, MDN, W3Schools |
| Food | 29 | AllRecipes, Bon Appetit, Epicurious |
| Automotive | 28 | Cars.com, AutoTrader, Edmunds, KBB |
| Health | 26 | WebMD, Mayo Clinic, Healthline |
| Sports | 22 | ESPN, NFL, NBA, Bleacher Report |
| Streaming | 13 | Netflix, Hulu, Disney+, HBO Max |
| Jobs | 12 | Indeed, Glassdoor, LinkedIn Jobs |
| Real Estate | 9 | Zillow, Realtor, Redfin |
| Classifieds | 1 | Craigslist |
This isn’t a curated list of friendly sites. It includes the same domains that cause real failures in production agent workflows, and it spans three difficulty tiers, from static HTML to aggressive bot-protection services.
What we measured
For each URL: connect to a remote browser, navigate, wait for content to load, extract content, take a screenshot. A URL passes if it returns a non-empty page title and content body. There were no manual retries and no cherry-picked results.
Results
| Metric | Value |
|---|---|
| Total URLs | 999 |
| Passed | 999 |
| Failed | 0 |
| Pass rate | 100.0% |
| Unique domains | 254 |
| Concurrency | 25 |
| Total elapsed | ~19 minutes |
Every URL returned usable content. No timeouts, no blocks, no empty responses.
Timing
| Metric | Value |
|---|---|
| Median page time | 11.5s |
| Average page time | 16.0s |
| p95 page time | 39.3s |
| Fastest page | 0.9s |
| Slowest page | 79.7s |
| Phase (avg) | Time |
|---|---|
| Connect | 5.7s |
| Navigate | 4.8s |
| Content extraction | 1.5s |
| Screenshot | 0.9s |
The median across all 999 URLs, including heavily protected sites like Amazon, Nike, and Booking.com, is 11.5 seconds from WebSocket handshake to extracted content and screenshot. The difficulty of the corpus pulls that number up. Easy and medium sites routinely finish in 1-3 seconds (the fastest completed in under a second). The slow tail (p95 at 39.3s) comes from the hardest anti-bot targets where the system works through multiple layers of protection to deliver real content.
These times are deliberate. Spider Browser waits for content to be ready: JavaScript rendering, lazy-loaded elements, dynamic content settling. We could return faster by skipping those checks, but you’d get incomplete data.
How the 100% pass rate works
Spider Browser handles anti-bot detection for you. When a page serves a challenge or block, the SDK detects it and escalates on its own. You don’t configure anything and you don’t write retry logic. You call page.goto(url) and get content back.
We built the entire stack in Rust. Sessions connect to pre-warmed browser instances with no cold start penalty. Each connection presents a unique browser profile, so consecutive requests to the same site look like different users to anti-bot systems.
The benchmark corpus deliberately includes some of the hardest targets on the web: Amazon, Nike, Best Buy, Walmart, Zillow, Sephora, Booking.com, and dozens of other sites behind major bot-protection services. All 999 URLs returned usable content.
What this means in practice
Kernel and Browserbase give you a browser. You write the automation, the anti-detection, and the retry logic. Spider Browser gives you the full pipeline:
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY,
stealth: 0,
});
await spider.init();
await spider.page.goto("https://www.amazon.com/dp/B0DGJHM7QN");
const data = await spider.page.extractFields({
title: "#productTitle",
price: ".a-price .a-offscreen",
rating: "#acrPopover .a-icon-alt",
reviews: "#acrCustomerReviewText",
availability: "#availability span",
image: { selector: "#landingImage", attribute: "src" },
});
console.log(data);
// { title: "Apple AirPods Pro 2", price: "$189.99", ... }extractFields() pulls structured data from the DOM in one call. For more complex workflows, there’s act() for click/type interactions, observe() for element discovery, extract() for natural-language queries, and agent() for fully autonomous multi-step workflows powered by any LLM.
| Feature | Spider Browser | Kernel | Browserbase |
|---|---|---|---|
| What you get | Browser + extraction + stealth + retry | Browser | Browser |
| Anti-bot bypass | Automatic | Manual | Manual |
| Success rate | 100% on 999 URLs | Not published | Not published |
| End-to-end latency | 2.5s median | Not published | Not published |
| Session creation | 705ms median | Sub-150ms (claimed) | Slower (per Kernel) |
| AI extraction | Built-in | None | None |
| Cold start | None (pre-warmed) | Sub-150ms | Slower |
| Open source | SDK + dataset | Browser images | Stagehand SDK |
Kernel optimizes for cold start speed. That matters when cold start latency is your bottleneck. For most agent workflows, the bottleneck is getting past bot detection, extracting content reliably, and handling failures across hundreds of different sites.
Reproduce it yourself
The dataset and full results are at github.com/spider-rs/spider-browser-dataset, including domains, URLs, timing breakdowns, and a machine-readable summary.
git clone https://github.com/spider-rs/spider-browser-dataset.git
cd spider-browser/typescript
npm install
# Full benchmark (999 URLs, ~19 min)
SPIDER_API_KEY=your-key npx tsx __tests__/stealth-test.ts --target=1000 --concurrency=25
# Quick test (200 URLs, ~4 min)
SPIDER_API_KEY=your-key npx tsx __tests__/stealth-test.ts --target=200We also maintain 1,004 ready-to-use scraper scripts across 32 categories, each using the spider-browser SDK with field-level extraction. Clone the repo, set your API key, run.
- spider-rs/spider-browser: TypeScript, Python, and Rust SDKs
- spider-rs/spider-browser-dataset: benchmark dataset and results
- spider-rs/web-scraping-examples: 1,004 ready-to-use scrapers
Keep reading
Spider Browser scores 85% on Browser Use's stealth benchmark
Spider Browser scored 85% on Browser Use's open stealth benchmark, beating every other cloud browser tested against 80 anti-bot protected sites.
Crawl4AI vs Firecrawl vs Spider Cloud: 1,000 URLs benchmarked
Crawl4AI vs Firecrawl on 1,000 real URLs: 89.7% vs 95.3% success rate, cost per 1K pages, RAG recall@5, and the method so you can rerun it yourself.
8 best Apify alternatives in 2026 (pricing, benchmarks)
Eight Apify alternatives compared on September 2026 pricing, cost at 100,000 pages, license and MCP support, with where each one falls short.
Run a page you already scrape
Paste a URL into the playground and read the markdown Spider Cloud gives back for it. Keyless runs work without an account, capped at 25 a day.