Universal AI GPT Scraper avatar
Universal AI GPT Scraper

Pricing

Pay per event

Go to Store
Universal AI GPT Scraper

Universal AI GPT Scraper

Developed by

Louis Deconinck

Maintained by Community

Transform any website into structured data with AI-powered extraction. This versatile tool combines advanced web scraping with intelligent content analysis to deliver clean, customized JSON output - perfect for automating data collection from any web source.

5.0 (1)

Pricing

Pay per event

2

Monthly users

24

Runs succeeded

>99%

Last modified

2 months ago

You can access the Universal AI GPT Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "urls": ["https://apify.com/louisdeconinck/ai-gpt-scraper"],
10    "fields": [
11        {
12            "name": "name",
13            "description": "The name/title of the scraper tool",
14            "type": "string",
15        },
16        {
17            "name": "price",
18            "description": "The price per 1000 results, only the number",
19            "type": "number",
20        },
21        {
22            "name": "author",
23            "description": "The author or maintainer of the scraper",
24            "type": "string",
25        },
26    ],
27    "cssSelector": "main",
28    "predefinedModel": "google/gemini-2.0-flash-001",
29    "useCustomModel": False,
30    "proxyConfiguration": { "useApifyProxy": True },
31}
32
33# Run the Actor and wait for it to finish
34run = client.actor("louisdeconinck/ai-gpt-scraper").call(run_input=run_input)
35
36# Fetch and print Actor results from the run's dataset (if there are any)
37print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
38for item in client.dataset(run["defaultDatasetId"]).iterate_items():
39    print(item)
40
41# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

Universal AI GPT Scraper API in Python

The Apify API client for Python is the official library that allows you to use Universal AI GPT Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Pricing

Pricing model

Pay per event 

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Actor start

$0.050

One-time charge for initializing the servers.

Page processed

$0.001

Cost per web page processed and converted to structured data.

1,000 Gemini Flash 1.5 tokens

$0.001

Cost for processing a 1,000 tokens with the Google Gemini Flash 1.5 model.

1,000 Gemini Flash 2 tokens

$0.001

Cost for processing a 1,000 tokens with the Google Gemini Flash 2.0 model.

1,000 GPT-4o Mini tokens

$0.001

Cost for processing a 1,000 tokens with the Open AI GPT-4o Mini model.

1,000 Gemini Pro 1.5 tokens

$0.020

Cost for processing a 1,000 tokens with the Google Gemini Pro 1.5 model.

1,000 GPT-4o tokens

$0.040

Cost for processing a 1,000 tokens with the Open AI GPT-4o model.