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>",
"data": {
"query": "<string>",
"results": [
{
"title": "<string>",
"url": "<string>",
"description": "<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>",
"data": {
"query": "<string>",
"results": [
{
"title": "<string>",
"url": "<string>",
"description": "<string>"
}
]
}
}Was this page helpful?