firecrawl_crawl_process
Crawl and extract content from all accessible subpages of a website with configurable depth limits. Ideal for comprehensive site analysis, content indexing, and efficient data collection from entire domains.
Instructions
Deep crawling of all accessible subpages on a website with configurable depth limits using Firecrawl. Efficiently discovers and extracts content from multiple pages within a domain. Best for comprehensive site analysis, content indexing, and data collection from entire websites.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extract_depth | No | The depth of the extraction process. "advanced" retrieves more data but costs more credits. | basic |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"extract_depth": {
"default": "basic",
"description": "The depth of the extraction process. \"advanced\" retrieves more data but costs more credits.",
"enum": [
"basic",
"advanced"
],
"type": "string"
},
"url": {
"oneOf": [
{
"description": "Single URL to process",
"type": "string"
},
{
"description": "Multiple URLs to process",
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"url"
],
"type": "object"
}