Extract property listings, prices, and details from real estate websites at scale.
Choose the real estate platforms to scrape.
Scrape property details including price, location, and features.
const listings = await client.scrape({
url: 'https://realestate.com/search?city=austin',
extract: {
properties: [{ selector: '.listing', fields: { price: '.price', address: '.address', beds: '.beds' } }]
}
});Navigate through multiple pages of search results.
Aggregate data to identify pricing trends and opportunities.