Browserbase Search
Most web agents need to be able to search the web before performing actions on a website. Browserbase Search, powered by Exa, now handles searching with a single API call.
Send a plain-text query and get back the URLs your agent needs to act on next.
import { Browserbase } from "@browserbasehq/sdk"; const bb = new Browserbase({ apiKey: process.env.BROWSERBASE_API_KEY! }); const searchResponse = await bb.search.({ query: "browserbase documentation", numResults: 10, });
Results return a url, title, and description, up to 25 results.
Each plan includes 1,000 free searches.