Search Engines Scraper avatar
Search Engines Scraper

Pricing

$9.00/month + usage

Go to Store
Search Engines Scraper

Search Engines Scraper

Developed by

Maged Safwat

Maged Safwat

Maintained by Community

a powerful and versatile search engine scraper that allows you to extract search results from multiple search engines simultaneously. Whether you're conducting market research, gathering data for analysis, or building a search aggregation service

5.0 (1)

Pricing

$9.00/month + usage

0

Total users

1

Monthly users

1

Runs succeeded

>99%

Last modified

20 hours ago

SuperEngine - Multi-Search Engine Scraper

a powerful and versatile search engine scraper that allows you to extract search results from multiple search engines simultaneously. Whether you're conducting market research, gathering data for analysis, or building a search aggregation service, this actor provides a robust solution for your web scraping needs.

🌟 Features

  • Multi-Engine Support: Scrape results from the popular search engines including Google, Bing, Yahoo, DuckDuckGo, and more being added
  • Customizable Scraping: Control the number of pages to scrape and request timeout
  • Proxy Support: Optional proxy configuration for enhanced privacy and IP rotation
  • Simple Integration: Easy-to-use interface with clear input/output schemas
  • Reliable Performance: Built with stability and reliability in mind

📥 Input Schema

The scraper accepts the following parameters:

ParameterTypeDescriptionDefault
search_querystringThe search query to look forRequired
search_enginesstringSelect one or more search engines to use"google"
max_pagesintegerHow many pages to crawl from search results1
timeoutintegerRequest timeout in seconds10
proxystringOptional proxy URL to use for requestsNone

Supported Search Engines

  • Google
  • Bing
  • Yahoo
  • AOL
  • DuckDuckGo
  • StartPage
  • Dogpile
  • Ask

Example Input

{
"search_query": "learn python",
"search_engines": ["google","bing"],
"max_pages": 2,
"timeout": 15,
"proxy": "http://proxy.example.com:8080"
}

📤 Output Schema

The scraper returns results in the following format:

FieldTypeDescription
hoststringThe host domain of the result
linkstringThe full URL of the result
titlestringThe title of the webpage
textstringThe snippet/description of the result
enginestringThe search engine that provided this result
pageintegerThe page number where this result was found

Example Output

{
"results": [
{
"host": "python.org",
"link": "https://www.python.org/about/gettingstarted/",
"title": "Python For Beginners",
"text": "Python is a programming language that lets you work quickly and integrate systems more effectively...",
"engine": "google",
"page": 1
},
{
"host": "w3schools.com",
"link": "https://www.w3schools.com/python/",
"title": "Python Tutorial - W3Schools",
"text": "Learn Python programming with our comprehensive tutorial...",
"engine": "bing",
"page": 2
}
]
}