← Back

Frequently Asked Questions

How does Unbrowse work?

Unbrowse is the API layer for AI agents. The first time your agent visits a site, it captures the real APIs the site uses to render itself, then reuses them on every subsequent call. The shared marketplace already covers 600+ domains and 18,000+ endpoints, so most calls skip the browser entirely and return in 50 to 200 milliseconds. That turns a slow, flaky browser step into a single HTTP call your agent can rely on.

How much faster is Unbrowse than headless browser automation?

Unbrowse is roughly 100x faster per page than headless browser automation. Headless browsers take 5 to 30 seconds per interaction; Unbrowse makes direct API calls in 50 to 200 milliseconds and uses about 200 tokens per action against 8,000 for scraped HTML. The gap compounds because cached marketplace routes skip discovery entirely on first try. For agent loops where the web step is the bottleneck, that turns minutes of work into seconds.

Is Unbrowse free?

Yes. Unbrowse is 100% free and open source under the AGPL-3.0 license. There are no paid tiers, no cloud proxies, no usage credits; everything runs locally on your machine. The project is funded by a small fee on agent-to-agent route payments, not by you. So installing costs nothing and stays that way.

What websites does Unbrowse support?

Unbrowse works with any website that uses APIs to render its frontend, which covers most modern web applications. 600+ domains and 18,000+ endpoints are in the live marketplace today, including Airbnb, LinkedIn, x.com, Reddit, and hundreds of others. When a site cannot be reverse-engineered, Unbrowse falls back to standard browser automation so your agent never gets stuck. The list grows on its own: every new capture adds a domain and helps the next agent on the same site.

Is Unbrowse secure? Do my credentials leave my machine?

Unbrowse runs entirely locally and your credentials never leave your device. There are no cloud proxies, no man-in-the-middle interception, browser cookies stay on your machine, and authentication credentials are encrypted with AES-256-CBC in a local vault. Only the discovered URL templates and schemas (never your data or credentials) are shared with the registry, and only when you opt in via unbrowse mode. That makes Unbrowse safe to install on a work machine without changing your existing security posture.

How do I install Unbrowse?

Run npx unbrowse setup for a one-command installation that wires up the local runtime and configures your agent host. If Unbrowse is already installed, upgrade with npm install -g unbrowse@latest and rerun unbrowse setup. For skill-based agent platforms like OpenClaw, use npx skills add unbrowse-ai/unbrowse. One install covers Cursor, Windsurf, Claude Code, Claude Desktop, Codex, and any other MCP-aware framework.

What is the skill registry?

The skill registry is a shared marketplace of reverse-engineered API skills. When one agent discovers how to interact with a website's API, the result is published so every other agent can call those endpoints without re-discovering them. Value compounds because every new capture lowers the cost for the next agent that needs the same data, the way Wikipedia gets more useful with every edit. That is what turns Unbrowse from a per-agent tool into shared infrastructure for the agent web.