AI Web Scraper avatar

AI Web Scraper

Pricing

$30.00 / 1,000 results

Go to Apify Store
AI Web Scraper

AI Web Scraper

Crawl web pages and extract structured information using AI

Pricing

$30.00 / 1,000 results

Rating

0.0

(0)

Developer

Tin

Tin

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

3 days ago

Last modified

Share

AI Web Scraper

AI Web Scraper is an Apify actor designed to crawl web pages and extract structured information using AI. The actor loads web pages, collects their content, and sends the extracted data to an AI model for intelligent processing. The AI then analyzes the page and returns structured information such as title, price, condition and other relevant data. It is build on top of Apify SDK and you can run it both on Apify platform and locally.

Input

Input is a JSON object with the following properties:

{
"startUrls": START_URLS,
"question": QUESTION,
"outputSchema": OUTPUT_SCHEMA
}

Example:

{
"question": "Extract the title, price and condition of the ebay item.",
"startUrls": [
{
"url": "https://www.ebay.com/p/3072579174?iid=186372216016&var=694422418597"
}
],
"outputSchema": "(z) => { return z.object({ title: z.string(), price: z.string(), condition: z.string() }); }"
}

Output

Output is stored in a dataset. Example:

{
"url": "https://www.ebay.com/p/3072579174?iid=186372216016&var=694422418597",
"title": "Samsung Galaxy S22 - 128 GB - Phantom Black (Unlocked)",
"price": "$156.99",
"condition": "Very Good - Refurbished"
}

Compute units consumption

Keep in mind that it is much more efficient to run one longer scrape (at least one minute) than more shorter ones because of the startup time.

The average consumption is 1 Compute unit for 1000 actor pages scraped

Epilogue

Thank you for trying my actor. I will be very glad for a feedback that you can send to my email dtrungtin@gmail.com.