Stealth
Solari has two browser modes. The default is fast and great for everyday work. Stealth mode makes your browser look like an ordinary person's, so it gets through sites that block bots.
Enable
// Default
await client.sessions.create({})
// Stealth
await client.sessions.create({ stealth: true })Stealth is also a prerequisite for proxies and captcha solving.
When to use which
| Default | Stealth | |
|---|---|---|
| Best for | Public pages, search, structured-data scraping, internal tools, agent loops on trusted sites. | Sites with bot defenses (Cloudflare, DataDome, Akamai, PerimeterX), social media, e-commerce, account-bound scraping. |
| Speed | Fastest to start and to load pages. | Slightly slower. |
| Cost | Cheapest tier. | Higher per-second rate. |
| Proxies + captcha | Not available. | Available. |
If you're unsure, start with the default and switch to stealth the moment you see blocks or challenge pages.
