Indexing Audit
Audit the indexing health of a Google Search Console property: start with a site-wide count, then drill into the most-visible pages.
Steps
- Call
list_propertiesto confirm the exactsite_url. - Call
check_indexing_issuesto get a site-wide breakdown of valid pages, errors, and warnings. Note any coverage categories with high error counts (this surfaces systemic issues before the per-URL drill-down). - Call
get_search_analyticswithdimensions=page,sort_by=impressions,row_limit=20to identify the 20 most-visible pages. - Extract the page URLs from step 3.
- Call
batch_url_inspectionwith up to 10 URLs at a time (API limit). Run twice if needed to cover all 20 pages. - Categorize each URL by verdict:
- ✅ Indexed (PASS)
- ⚠️ Soft 404 / Excluded
- ❌ Not indexed / Blocked
- 🔍 Canonical mismatch (Google chose a different canonical)
- For each issue, record the specific
coverageState,pageFetchState, orrobotsTxtStatefrom the inspection.
Output format
Start with a site-wide summary from step 2: total valid / total errors / total warnings.
Then present a prioritized action list for the top pages:
- Critical: not indexed pages that have impressions (visibility being lost)
- High: canonical mismatches on high-traffic pages
- Medium: robots.txt or fetch blocks
- Low: soft exclusions on low-traffic pages
Include a summary table: Page URL | Verdict | Issue | Recommended action.