The GSC API manages a Wix site's presence in Google Search Console: it verifies the site with Google, adds it as a Search Console property, submits its sitemap, requests indexing, and reads inspection and search performance data. It acts through the Google account linked to the site with the GSC Connection API.
With the GSC Site Readiness API, you can:
A site becomes fully set up in Google Search Console in this order:
google-site-verification meta tag on every page automatically.Get Site Readiness reports whether the site's Google connection and ownership verification are in place, and if not, the first step that's still blocking. It covers steps 1 and 2 above; call the property steps that follow in order yourself.
Inspecting pages is a two-step, asynchronous operation. Inspect URLs starts the inspection and returns the first batch of results synchronously. When pages remain, Wix keeps inspecting them server-side, and you poll Get Inspection until the inspection completes.
Each inspected page consumes the connected account's Google URL-inspection quota. Google allows up to 2,000 page inspections a day per property, so an inspection can finish with pages left uninspected when the quota runs out, and sites with more than 2,000 pages can't be inspected through this API at all.
It's important to note the following points before starting to code:
FAILED_PRECONDITION (MISSING_TOKEN) until the connection's status is VALID.FAILED_PRECONDITION.RESOURCE_EXHAUSTED (GOOGLE_QUOTA_EXCEEDED) error is safe to retry after the quota window resets, and an UNAVAILABLE (GOOGLE_UNAVAILABLE) error is a temporary Google failure that's safe to retry with backoff.READY when setup is complete, or NOT_READY with the first blocking step.Last updated: 7 September 2026