🌐 Total URLs Tracked
24,891
▲ 12% vs last month
✅ Indexed
22,104
▲ 8.4% crawl efficiency
🕷️ Crawled Errors
142
▼ 32% resolved
🚫 Excluded
2,645
▼ 5.1% noindex rules
API Integration
Programmatically fetch coverage data using our REST API. Requires a valid API key in the header.
curl -X GET "https://api.sitemap.xml/v1/coverage/data" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"limit": 50, "status": "indexed", "sort": "last_crawl_desc"}'
const response = await fetch('https://api.sitemap.xml/v1/coverage/data', {
method: 'POST',
headers: { 'Authorization': `Bearer ${API_KEY}` },
body: JSON.stringify({ limit: 50, status: 'indexed' })
});
const data = await response.json();
import requests
res = requests.post("https://api.sitemap.xml/v1/coverage/data",
headers={"Authorization": f"Bearer {API_KEY}"},
json={"limit": 50, "status": "indexed"}
)
print(res.json())