SiteMap
1. Get info for sitemap.xml
Endpoint
GET /api/v1/sitemap.xml
Request Headers
{
"X-API-Key": "123456789",
"Content-Type": "application/json"
}
Request Body (JSON):
{}
Response Body (200)
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:3000/downloads</loc>
<lastmod>2026-06-09T13:26:37+00:00</lastmod>
</url>
<url>
<loc>http://localhost:3000</loc>
<lastmod>2025-12-18T09:34:47+00:00</lastmod>
</url>
<url>
<loc>http://localhost:3000/normal_test</loc>
<lastmod>2026-05-25T09:49:04+00:00</lastmod>
</url>
<url>
<loc>http://localhost:3000/test_about_us</loc>
<lastmod>2026-05-14T14:39:52+00:00</lastmod>
</url>
<url>
<loc>http://localhost:3000/test_page</loc>
<lastmod>2026-04-21T16:37:31+00:00</lastmod>
</url>
</urlset>
2. Get info for route sitemap
Endpoint
GET /api/v1/sitemap
Request Headers
{
"X-API-Key": "123456789",
"Content-Type": "application/json"
}
Request Body (JSON):
{}
Response Body (200)
{
"menu": [
{
"title": "Test group",
"url": null,
"children": [
{
"title": "test About us",
"url": "http://localhost:3000/test_about_us"
},
{
"title": "Test page",
"url": "http://localhost:3000/test_page"
}
]
},
{
"title": "About Us",
"url": null,
"children": [
{
"title": "Normal test",
"url": "http://localhost:3000/normal_test"
},
{
"title": "Test page",
"url": "http://localhost:3000/test_page"
}
]
}
],
"pages": [
{
"title": "Downloads",
"url": "http://localhost:3000/downloads"
},
{
"title": "Home page",
"url": "http://localhost:3000"
},
{
"title": "Normal test",
"url": "http://localhost:3000/normal_test"
},
{
"title": "test_about_us",
"url": "http://localhost:3000/test_about_us"
},
{
"title": "Test page ",
"url": "http://localhost:3000/test_page"
}
]
}
19 June 2026