scrape_webpage
Extract content and metadata from any webpage by providing its URL, returning results in JSON format for structured data analysis and integration.
Instructions
Scrape content and metadata from a single webpage using Crawl4AI.
Args: url: The URL of the webpage to scrape
Returns: List containing TextContent with the result as JSON.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "scrape_webpageArguments",
"type": "object"
}