Method
services.scrape.list(params)
Return keys are non-deterministic - you won’t know the exact schema until runtime. This function can take minutes to run.
URL containing the list to scrape
Description of what items to scrape (e.g., “portfolio companies”, “team members”). Do NOT list specific properties.
Output
Returns an array of objects. The exact keys depend on the page content and are determined at runtime by AI.
Example
const companies = await services.scrape.list({
url: "https://vc-firm.com/portfolio",
hint: "portfolio companies"
});
return companies;