Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
MCP ServerToolsURL to MarkdownPOST

URL to Markdown

Converts the content of a webpage URL into Markdown format. Useful for extracting text content for analysis.

Input Schema

ParameterTypeDescription
urlstringThe URL of the webpage to convert to Markdown

REST Endpoint

POST /api/agents/tools/urlToMarkdown
POST /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