Authorizations
Response
Batch scrape job started successfully
import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
await client.scrape.batch.start({
urls: ['https://example.com/page1', 'https://example.com/page2'],
scrapeOptions: {
formats: ['markdown']
}
});{
"jobId": "<string>"
}import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
await client.scrape.batch.start({
urls: ['https://example.com/page1', 'https://example.com/page2'],
scrapeOptions: {
formats: ['markdown']
}
});{
"jobId": "<string>"
}Batch scrape job started successfully