GEO · ~7 min
GEO sampling tells you whether engines cite you — but it's noisy. Search Console tells you, deterministically, whether they can even reach and index you. You need both.
GEO measurement samples a moving target. Google Search Console (GSC) and Bing Webmaster Tools (WMT) give you the other half: a deterministic record of index coverage, performance, crawl anomalies, and schema errors — the things that silently kill citations before sampling ever runs.
The GEO sampling from Part 4's measurement work is probabilistic — run a prompt five times, get different answers. GSC is the opposite: it's the authoritative source for how Google sees your site, and Bing WMT provides the same for Bing and Microsoft Copilot Search. Without a reporting loop, regressions stay invisible until traffic drops.
| GEO sampling (probabilistic) | Search Console (deterministic) |
|---|---|
| Are engines citing me? | Can engines reach and index me? |
| Noisy — drifts run to run | Stable — index counts, crawl errors, schema |
| 20–30 prompts daily across platforms | One scheduled API report per week |
The corpus's pattern is a scheduled GitHub Actions workflow — Monday 08:00 UTC — that authenticates via a GCP service account, calls the APIs, and opens a GitHub issue with the report. Two files: the workflow and a report script.
| Section | API | Captures |
|---|---|---|
| Index coverage | Sitemaps API | Submitted vs indexed per sitemap |
| Core Web Vitals | CrUX API | Real user data, trailing 28 days, mobile |
| Top queries | Search Analytics | Top 10 by impressions, last 7 days |
Crawl anomalies and schema errors have no bulk API — the report links into the GSC dashboard for those. Wrap the same script in an on-demand command for ad-hoc checks between scheduled runs.
GSC data is near-real-time, not live. Read every number with its lag attached, or you'll act on stale signal.
| Constraint | Detail |
|---|---|
| Search Analytics lag | ~3 days — report end date is today − 3 |
| CrUX window | Trailing 28 days — not the past 7 |
| CrUX eligibility | Low-traffic origins return 404 — no field data |
| Bing WMT | API exists, but no bulk CSV — trends need the dashboard |
The ~3-day Search Analytics lag means the weekly report reflects conditions 10+ days old — too stale for incident response, where a manual GSC check is faster. CrUX returns 404 for low-traffic origins, leaving the vitals section empty. For single-property sites under ~50 indexed pages, the automation gains little over a 5-minute manual check.
Retrieval practice — recall, don't peek
Question 1Relative to GEO sampling, Search Console data is…
Question 2The Core Web Vitals section is sourced from…
Question 3The GSC Search Analytics API lags real time by about…
Question 4Automating GSC pays off least for…
Question 5 · spaced recall from Lesson 06Topical authority makes AI recognize your site as…