get_webpage_content
Extract and convert webpage content into Markdown, HTML, or plain text formats using a specified URL. Designed for web scraping and content extraction without relying on APIs.
Instructions
Fetch webpage content and convert to specified format. Supports Markdown, HTML, and plain text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format: markdown (default), html, text | markdown |
| url | Yes | The URL of the webpage to scrape. Must be a valid HTTP/HTTPS link. |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "markdown",
"description": "Output format: markdown (default), html, text",
"enum": [
"markdown",
"html",
"text"
],
"type": "string"
},
"url": {
"description": "The URL of the webpage to scrape. Must be a valid HTTP/HTTPS link.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}