import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
const response = await client.web.search({
query: 'hyperbrowser api',
filters: {
site: 'hyperbrowser.ai'
}
});{
"jobId": "<string>",
"status": "completed",
"error": "<string>"
}Performs a web search and returns search results with titles, URLs, and descriptions
import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
const response = await client.web.search({
query: 'hyperbrowser api',
filters: {
site: 'hyperbrowser.ai'
}
});{
"jobId": "<string>",
"status": "completed",
"error": "<string>"
}Was this page helpful?