get_website_urls
Extract and filter URLs from any website based on a search query to find relevant pages quickly.
Instructions
Search and retrieve relevant URLs from a website
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search_query | Yes | The search query to sort URLs by. | |
url | Yes | The URL of the website to map. |
Input Schema (JSON Schema)
{
"properties": {
"search_query": {
"description": "The search query to sort URLs by.",
"type": "string"
},
"url": {
"description": "The URL of the website to map.",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"search_query"
],
"type": "object"
}