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
| Parameter | Type | Description |
|---|---|---|
| url | string | The URL of the website to extract the sitemap from |
REST Endpoint
POST /api/agents/tools/urlToSitemapPOST /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