Skip to main content
1 credit per call

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.

Input

url
string
required
URL containing the list to scrape
hint
string
required
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;