Extract data from any website at scale with enterprise-grade reliability, anti-bot bypass, and structured output.
const data = await client.scrape({
url: "https://example.com/products",
renderJs: true,
extractSchema: {
products: [{
name: "string",
price: "number",
inStock: "boolean"
}]
},
geo: "us"
})