import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
const response = await client.web.crawl.getStatus('job-id');{
"status": "pending"
}Retrieves just the status of a web crawl job without the full results.
import { Hyperbrowser } from '@hyperbrowser/sdk';
const client = new Hyperbrowser({ apiKey: 'your-api-key' });
const response = await client.web.crawl.getStatus('job-id');{
"status": "pending"
}Was this page helpful?