URL to Markdown
Converts the content of a webpage URL into Markdown format. Useful for extracting text content for analysis.
Input Schema
| Parameter | Type | Description |
|---|---|---|
| url | string | The URL of the webpage to convert to Markdown |
REST Endpoint
POST /api/agents/tools/urlToMarkdownPOST /api/agents/tools/urlToMarkdown
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"url": "https://example.com/blog/some-article"
}Response:
{
"success": true,
"markdown": "# Article Title\n\nContent here..."
}Last updated on