WebSearch

crawl

Crawls a website starting from the specified URL and extracts content from multiple pages. Args: - url: The complete URL of the web page to start crawling from - maxDepth: The maximum depth level for crawling linked pages - limit: The maximum number of pages to crawl

Returns: - Content extracted from the crawled pages in markdown and HTML format

Input Schema

NameRequiredDescriptionDefault
limitYes
maxDepthYes
urlYes

Input Schema (JSON Schema)

{ "properties": { "limit": { "title": "Limit", "type": "integer" }, "maxDepth": { "title": "Maxdepth", "type": "integer" }, "url": { "title": "Url", "type": "string" } }, "required": [ "url", "maxDepth", "limit" ], "title": "crawlArguments", "type": "object" }

You must be authenticated.

Other Tools