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

URL to Sitemap

Extracts the sitemap of a website to discover its structure and page URLs. Useful for navigation and understanding site layout.

Input Schema

ParameterTypeDescription
urlstringThe URL of the website to extract the sitemap from

REST Endpoint

POST /api/agents/tools/urlToSitemap
POST /api/agents/tools/urlToSitemap Authorization: Bearer YOUR_API_KEY Content-Type: application/json { "url": "https://example.com" }

Response:

{ "success": true, "urls": [ "https://example.com/", "https://example.com/about", "https://example.com/blog" ] }
Last updated on