crawl_url
Extract and analyze webpage text content for research, quoting, or data processing by fetching URLs and returning clean text output.
Instructions
Fetch a URL with crawl4ai when you need the actual page text for quoting or analysis.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| reasoning | Yes | ||
| max_chars | No |
Input Schema (JSON Schema)
{
"properties": {
"max_chars": {
"default": 12000,
"title": "Max Chars",
"type": "integer"
},
"reasoning": {
"title": "Reasoning",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url",
"reasoning"
],
"type": "object"
}