← Developers
Sitemap explorer
Browse GET /api/aevion/sitemap.xml — the public sitemap powering AEVION's search-engine visibility. Search by path, group by prefix / changefreq / priority bucket / lastmod month. The XML is parsed in your browser with the native DOMParser — no library required.
URL
/api-backend/api/aevion/sitemap.xml
curl
curl -s '/api-backend/api/aevion/sitemap.xml'
Python (stdlib)
import urllib.request
import xml.etree.ElementTree as ET
with urllib.request.urlopen("/api-backend/api/aevion/sitemap.xml") as r:
tree = ET.fromstring(r.read())
ns = {"sm": "http://www.sitemaps.org/schemas/sitemap/0.9"}
for url in tree.findall("sm:url", ns):
loc = url.findtext("sm:loc", default="", namespaces=ns)
pri = url.findtext("sm:priority", default="", namespaces=ns)
print(f"{loc}\t{pri}")0
total URLs
0
shown after filter
—
Group by
Loading sitemap…
Priority legend
green — 0.7 – 1.0 (high) · amber — 0.4 – 0.69 (medium) · gray— < 0.4 (low)
Submit this sitemap to Google Search Console and Bing Webmaster Tools — AEVION's root
Submit this sitemap to Google Search Console and Bing Webmaster Tools — AEVION's root
/robots.txt references it automatically.Source:
GET /api/aevion/sitemap.xml · Catalog explorer · Health explorer · Badge builder · OpenAPI explorer