



Browser Use is the way AI uses the web. Describe a goal in natural language — our agent opens a real browser, navigates autonomously, solves CAPTCHAs, and returns structured data.
What you get with this integration:
BROWSER_USE_API_KEY provisioned into your Vercel projectProducts:
80,000+ GitHub stars. Trusted by Fortune 500 teams.
Quick start — use the provisioned BROWSER_USE_API_KEY:
import { BrowserUse } from "browser-use-sdk";
import { z } from "zod";
const client = new BrowserUse();
const Post = z.object({
title: z.string(),
url: z.string(),
points: z.number(),
});
const result = await client.run(
"Get the top 3 posts from Hacker News",
{ schema: z.array(Post) }
);
result.output.forEach((post) =>
console.log(`${post.title} (${post.points} pts)`)
);
Works with any framework — Next.js, Node.js, Python. Use client.run() for one-shot tasks, or client.sessions.create() for persistent workflows with live browser previews, saved profiles,
and multi-step conversations.
Resources: