Last updated 22 days ago
© 2025 S2 Labs, Inc. All rights reserved.
Scrape job details
Scrape job created
const response = await fetch('https://app.hyperbrowser.ai/api/scrape/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "jobId": "123e4567-e89b-12d3-a456-426614174000", "status": "pending", "error": "text", "data": { "markdown": "text", "html": "text", "links": [ "text" ] } }
const response = await fetch('https://app.hyperbrowser.ai/api/scrape', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "url": "text" }), }); const data = await response.json();
{ "jobId": "123e4567-e89b-12d3-a456-426614174000" }