{"success":true,"prompt":"/sitemap.xml","response":"It looks like you're interested in the **sitemap.xml** file—the \"GPS\" for search engine crawlers. Whether you're trying to find one on a website or looking to build your own, here is the quick breakdown of what it is and how it works.\n\n---\n\n### What is a Sitemap?\nA sitemap is an XML file that lists the URLs for a site. It allows webmasters to include additional information about each URL: when it was last updated, how often it changes, and how important it is in relation to other URLs on the site.\n\n\n\n### Common Sitemap Locations\nIf you are looking for a website's sitemap, it is usually found at one of the following paths:\n* `example.com/sitemap.xml`\n* `example.com/sitemap_index.xml` (common for larger sites with multiple sitemaps)\n* `example.com/sitemap/`\n\n> **Pro Tip:** You can often find the exact location by checking the site's `robots.txt` file (usually at `example.com/robots.txt`).\n\n---\n\n### Basic Structure\nA standard sitemap follows a specific protocol. Here is what a single entry looks like in the code:\n\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n   <url>\n      <loc>http://www.example.com/</loc>\n      <lastmod>2026-04-13</lastmod>\n      <changefreq>monthly</changefreq>\n      <priority>0.8</priority>\n   </url>\n</urlset>\n```\n\n### Why do you need one?\n1.  **Faster Indexing:** It tells Google and Bing exactly where your new content is.\n2.  **Deep Pages:** It helps crawlers find pages that aren't well-linked within your site's navigation.\n3.  **Media Info:** Specialized sitemaps can give search engines details about video, image, and news content.\n\nAre you trying to generate a sitemap for your own site, or are you troubleshooting an indexing issue?"}