Connect Indexing Status to Google Sheets

For a list of URLs, read back what Google has on record from your indexing notifications — when each was last submitted, and whether it was an update or a removal.

Coming soon — join the list to get early access

What you can pull from Indexing Status

Indexing Status exposes 1 object you can pull, each as its own job. Every run will pull the records into a flat table, so nested fields arrive as ordinary columns that Google Sheets can sort, filter and total without further work.

URL notification metadata

What Google recorded for each URL you have notified it about. Reading status costs no publish quota, so this is the safe half of the pair.

Columns returned by url notification metadata
ColumnTypeNotes
urlstring
latest_update_typestring
latest_update_timedatetime
latest_update_urlstring
latest_remove_typestring
latest_remove_timedatetime
latest_remove_urlstring
notify_statusstring
notify_errorstringPopulated only when the lookup failed for that URL

Options you can set

urls
The URL list to read status for

How it lands in Google Sheets

Google Sheets accepts append and overwrite writes. Overwrite replaces the target range, which suits a snapshot; append adds rows underneath, which suits a log you are accumulating. There is no upsert here, so rows are added or replaced rather than merged.

  • Append adds rows below existing content; overwrite replaces the target range.
  • No upsert: a spreadsheet has no primary key, so there is nothing to merge on. Use Airtable or Postgres if rows must be updated in place.
  • Google caps a spreadsheet at 10 million cells across all tabs. Filter before writing rather than after.

Authentication

You connect Indexing Status once through OAuth and the credential is stored server-side, never pasted into a cell or a formula. Only the scopes the connector actually calls are requested — the table below lists each one and what it is for.

What Indexing Status is asked for

indexing sensitive
Covers both publishing notifications and reading their status
userinfo.email non-sensitive
Label the connection

Keeping runs incremental

Not for this source: Each run reads status for the URLs you give it. Where that is expensive, narrow the job itself and run it less often.

Because Google Sheets has no upsert, decide what a re-run should mean before you schedule it. Overwrite keeps a current snapshot; append accumulates history and will grow without bound.

Common gotchas

Most of what goes wrong with a scheduled sync is not a bug — it is a detail of how one side behaves that nobody wrote down. These are the ones that come up for this pair.

This reports your notifications, not Google’s index

It reads back what you told Google and when. It does not tell you whether a page is actually indexed or ranking - Search Console is where that question belongs.

Verified ownership is required, and is a separate grant

The connecting account must be a verified owner of the site in Search Console. That consent is distinct from the Search Console reporting connector, so you will authorise twice.

An open-ended range beats a padded one

Writing to A2:D is better than A2:D1000 for appends: the padded form reserves rows you may not need and makes the append boundary ambiguous.

Set it up in four steps

  1. 1

    Connect Indexing Status

    Connect a Google account that is a verified owner of the site in Search Console. This is a separate grant from the Search Console source - different scopes, different consent - so the two connections cannot be shared.

  2. 2

    Connect Google Sheets

    Connect your Google account once. Paste a spreadsheet URL or ID.

  3. 3

    Shape the data

    Select the columns you want, filter rows, cast types and add computed fields. Everything else is dropped before it reaches the destination.

  4. 4

    Schedule it

    Run once, or on a cron. Every run refreshes Google Sheets with the latest Indexing Status data.

Do I need an add-on or extension for this?

No. The job runs server-side and writes into Google Sheets through its API, so there is nothing installed in the spreadsheet itself. It keeps running when nobody has the file open, and a copy of the file does not need anything installed to work.

How often does the data refresh?

On whatever schedule you set with a cron expression — hourly, daily, or a specific time on specific days. Each run pulls the latest from Indexing Status.

Do I need to write any code?

No. You connect both sides, map the fields in a wizard and set a schedule. Computed fields accept small expressions — abs, round, min, max, len — but there is nothing to host or maintain.

Do I have to give access to my whole Google Drive?

No. Only the spreadsheets scope is requested. The Drive scope that most spreadsheet tools ask for is a restricted scope granting read access to every file you own; it is deliberately not requested here, which is why you paste a spreadsheet URL rather than browsing Drive.

Will this keep working if I copy the sheet?

The job writes to a specific spreadsheet ID, so a copy will not receive data until you point a job at it. Nothing is installed in the file itself, though, so copying never breaks the original.

When will Indexing Status be available?

Indexing Status is built and waiting on verification. Join the early-access list and we will let you know the moment it opens.