Skip to main content
POST
/
api
/
scrape
/
batch
JavaScript
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>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
urls
string[]
required
sessionOptions
object
scrapeOptions
object

Response

Batch scrape job started successfully

jobId
string
required