searchscraper
Extract structured web search results using AI. Input a search query to retrieve organized data and URLs from multiple websites, with customizable result counts and scrolls for deeper exploration.
Instructions
Perform AI-powered web searches with structured results.
Args:
user_prompt: Search query or instructions
num_results: Number of websites to search (optional, default: 3 websites = 30 credits)
number_of_scrolls: Number of infinite scrolls to perform on each website (optional)
Returns:
Dictionary containing search results and reference URLs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_results | No | ||
number_of_scrolls | No | ||
user_prompt | Yes |
Input Schema (JSON Schema)
{
"properties": {
"num_results": {
"default": null,
"title": "Num Results",
"type": "integer"
},
"number_of_scrolls": {
"default": null,
"title": "Number Of Scrolls",
"type": "integer"
},
"user_prompt": {
"title": "User Prompt",
"type": "string"
}
},
"required": [
"user_prompt"
],
"title": "searchscraperArguments",
"type": "object"
}