convert_multiple_to_markdown
Transform multiple web page URLs into Markdown format using AI to create LLM-friendly content. Streamline content extraction and conversion for web pages via ReviewWebsite API.
Instructions
Convert multiple URLs to Markdown using AI via ReviewWeb.site API. Turn multiple web pages into LLM-friendly content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
debug | No | Whether to enable debug mode | |
delayAfterLoad | No | Optional delay after page load in milliseconds | |
maxLinks | No | Maximum number of URLs to process | |
model | No | AI model to use for conversion | |
urls | Yes | List of URLs to convert to Markdown |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"debug": {
"description": "Whether to enable debug mode",
"type": "boolean"
},
"delayAfterLoad": {
"description": "Optional delay after page load in milliseconds",
"type": "number"
},
"maxLinks": {
"description": "Maximum number of URLs to process",
"type": "number"
},
"model": {
"description": "AI model to use for conversion",
"type": "string"
},
"urls": {
"description": "List of URLs to convert to Markdown",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"urls"
],
"type": "object"
}