Skip to main content
GET
/
api
/
extract
/
{id}
/
status
JavaScript
import { Hyperbrowser } from '@hyperbrowser/sdk';

const client = new Hyperbrowser({ apiKey: 'your-api-key' });

await client.extract.getStatus('job-id');
{
  "status": "pending"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string<uuid>
required

Response

Extract job status

status
enum<string>
required
Available options:
pending,
running,
completed,
failed,
stopped