Extract property listings, pricing trends, and market data from real estate platforms at scale.
const listings = await client.scrape({
url: "https://realestate.com/listings/manhattan",
renderJs: true,
extractSchema: {
properties: [{
address: "string",
price: "number",
beds: "number",
baths: "number",
sqft: "number",
agent: "string"
}]
}
})