Changelog

Product updates, API changes, and fixes shipped from the Browserless team.

4 New REST APIs: /smart-scrape, /search, /map, /crawl

Smart-scrape extracting content from a search result

We've launched four new endpoints built for AI agents and large-scale data extraction:

  • /smart-scrape intelligently extracts content with automatic CAPTCHA solving and proxy rotation.
  • /search combines web search with content extraction in one call.
  • /map discovers all URLs on a site instantly.
  • /crawl handles multi-page extraction at scale.

Learn more about /smart-scrape

Official MCP Server for AI Agents

Our Model Context Protocol server is live at https://mcp.browserless.io/mcp. If you use Claude.ai, Cursor, Windsurf, or VS Code, you can now run browser automations directly from natural language prompts. Sign in with one click instead of copying API tokens. All our REST APIs are available through MCP, plus tools for running custom code, downloading files, and generating PDFs.

Learn more about MCP →

4 New CAPTCHA Types: DataDome, Lemin, MTCaptcha & Slider

BrowserQL now automatically handles DataDome, MTCaptcha, Lemin, and slider CAPTCHAs, on top of the existing support for reCAPTCHA, Cloudflare Turnstile, and others. These challenge types have been showing up more frequently on e-commerce, travel, and financial sites. If your automation is hitting any of them, BQL resolves them without any changes to your scripts.

Using them is the same as any other solve:

mutation SolveDataDome {
  goto(url: "https://example.com") {
    status
  }
  solve(type: datadome) {
    solved
  }
}

See all supported CAPTCHA types →

Script Generator (Beta): Describe It, Get a Script

Script Generator in the dashboard

A new tool in the dashboard that turns a plain-English description of what you want to automate into a ready-to-run BQL or Playwright script. Whether you're prototyping something new or just want a starting point without digging through docs, it gets you to working code faster.

Currently rolling out to 50% of users. If it's available on your account, you'll see it in your dashboard.

Unique WebGL Fingerprints, Per Session

Every browser session now presents a unique, realistic GPU fingerprint drawn from a pool of real-world NVIDIA, AMD, and Intel hardware. This replaces the same generic renderer that bot detection systems have long flagged. If your automations run against sites that do canvas or WebGL fingerprinting, this directly improves your pass rate with no code changes required.