Scrape SEO Data in Google Sheets & Excel
Formula
Audit pages by the row. Pulls title, meta and Open Graph tags for each URL — Sheets or Excel, auto-refreshing.
=VERVE("seoscraper", A2, "field", "requestUrl")=VERVE.CALL("seoscraper", A2, "field", "requestUrl")A2 holds the url you're looking up. Drag the formula down and each row resolves on its own.
With literal values
Nothing has to come from a cell — typed values work the same way.
=VERVE("seoscraper", "https://www.nytimes.com", "field", "requestUrl")=VERVE.CALL("seoscraper", "https://www.nytimes.com", "field", "requestUrl")Inputs
Required inputs are positional, in the order below. Everything else is passed as a "name", value pair after them — the same shape as SUMIFS.
| Input | Type | Where it goes | Description |
|---|---|---|---|
urlRequired | string | argument 2 | The URL of the web page to scrape SEO data from (e.g. https://www.nytimes.com) |
What lands in your sheet
The "field" pair is what makes the formula resolve to one cell. The name is a dot-path from the table below, so swapping it is how you pull a different value — one formula per column.
Seeing everything at once
Drop the "field" pair and the formula returns the whole response instead: two columns, field name on the left and value on the right, spilling from the cell you typed in.
=VERVE("seoscraper", A2)=VERVE.CALL("seoscraper", A2)Good for finding out what a source returns, but it is not a formula you can fill down: the second row's table would land on top of the first's, and every cell after the first reads #REF! (#SPILL! in Excel). Keep one per sheet, or name a field. Leave the cells below and to the right empty.
Available fields
#PREMIUM(field) rather than a value, so a locked field never looks like a real answer.| Use as "field" | Type | Example cell value | Description |
|---|---|---|---|
requestUrl | string | Original URL provided in the request | |
url | string | Final resolved URL after redirects and canonicalization | |
canonicalPremium | string | Canonical URL specified in page meta tags | |
lang | string | Page language code extracted from HTML attributes | |
charset | string | Character encoding declared in page metadata | |
title | string | Page title tag content for SEO optimization | |
imagePremium | string | Primary open graph image URL for social sharing | |
favicons | array[3] | Array of favicon objects with rel, type, and href | |
└ favicons.0.rel | string | Favicon relationship type like icon or apple-touch-icon | |
└ favicons.0.type | string | MIME type of favicon image resource | |
└ favicons.0.href | string | URL path to favicon resource file | |
author | string | Author meta tag content for attribution | |
description | string | Meta description tag for search engine snippets | |
keywords | string | Meta keywords tag for SEO targeting | |
sourcePremium | string | Schema.org source property from structured data | |
pricePremium | string | Product pricing information from schema markup | |
priceCurrencyPremium | string | Currency code for product pricing in schema | |
availabilityPremium | string | Product availability status from structured data | |
robots | string | Robots meta tag directives for search indexing | |
jsonldPremium | array[2] | Array of JSON-LD structured data objects | |
└ jsonld.0.@contextPremium | string | JSON-LD schema context URL for validation | |
└ jsonld.0.@typePremium | string | Schema.org type of structured data object | |
└ jsonld.0.namePremium | string | ||
└ jsonld.0.urlPremium | string | Final resolved URL after redirects and canonicalization | |
└ jsonld.0.logoPremium | string | ||
└ jsonld.0.sameAsPremium | array | ||
og:url | string | Open Graph canonical URL for social sharing | |
og:locale | string | Open Graph locale language and region code | |
og:locale:alternate | string | Alternate locales for Open Graph content | |
og:title | string | Open Graph title for social media preview | |
og:type | string | Open Graph content type like website or article | |
og:description | string | Open Graph description for social sharing | |
og:determiner | string | Open Graph article determiner for grammar | |
og:site_name | string | Open Graph site name for consistency | |
og:image | string | Open Graph image URL for social previews | |
og:image:secure_url | string | HTTPS version of Open Graph image URL | |
og:image:type | string | MIME type of Open Graph image resource | |
og:image:width | string | Open Graph image width in pixels | |
og:image:height | string | Open Graph image height in pixels | |
twitter:title | string | Twitter card title for social preview | |
twitter:description | string | Twitter card description for social sharing | |
twitter:image | string | Twitter card image URL for social media | |
twitter:image:alt | string | Twitter image alt text for accessibility | |
twitter:card | string | Twitter card type like summary_large_image | |
twitter:site | string | Twitter account handle for attribution | |
twitter:site:id | string | Twitter account ID numeric identifier | |
twitter:url | string | Twitter card URL destination link | |
twitter:account_id | string | Associated Twitter account numeric ID | |
twitter:creator | string | Twitter creator account handle attribution | |
twitter:creator:id | string | Twitter creator account numeric ID | |
twitter:player | string | Twitter player URL for media content | |
twitter:player:width | string | Twitter player width in pixels | |
twitter:player:height | string | Twitter player height in pixels | |
twitter:player:stream | string | Twitter player streaming media URL | |
twitter:app:name:iphone | string | Twitter app name for iPhone platform | |
twitter:app:id:iphone | string | Twitter app ID for iPhone app store | |
twitter:app:url:iphone | string | Twitter app URL for iPhone deep linking | |
twitter:app:name:ipad | string | Twitter app name for iPad platform | |
twitter:app:id:ipad | string | Twitter app ID for iPad app store | |
twitter:app:url:ipad | string | Twitter app URL for iPad deep linking |
Filling a whole column
Both platforms make one batched call for a column rather than one request per cell, and both cost the same — 5 credits per row looked up. How you write it differs, because the two runtimes batch at different points.
=VERVE("seoscraper", A2:A100, "field", "requestUrl")Give the arguments ranges and the answers spill down from the cell you typed in. Sheets custom functions run synchronously and in isolation, so dragged cells can't be coalesced — the range form is how a column becomes one call.
The "field" pair is required here: a per-row two-column table has nowhere to spill. Use a full column per input (A2:A100, not A2) — a single-cell reference is read as row 1 only, and the rest of the column comes back blank.
=VERVE.CALL("seoscraper", A2, "field", "requestUrl")Drag or double-click the fill handle — no range form and none needed. Excel's runtime is asynchronous, so the add-in coalesces the calls a fill produces into a single batched request on its own.
Don't hand VERVE.CALL a range: Excel flattens it into positional arguments, so A2:A100 arrives as a hundred separate arguments and the cell reads #ERR rather than filling.
Either way, column A holds your url values and the answers land beside them, one row each, blank rows skipped.
When a cell doesn't fill
A failed lookup returns readable text starting with #ERR rather than a spreadsheet error, because Excel cannot show a custom message on a real error — you would get a bare #VALUE! with no reason. The trade-off is that IFERROR() won't catch it; test with LEFT(cell, 4) = "#ERR" instead.
| Cell reads | What happened |
|---|---|
#ERR Not connected | No API key saved. Open the side panel and connect your account. |
#ERR Replace <name> with a cell or value | The preview formula was copied as-is. Swap the placeholder for a cell reference. |
#ERR No "x" in seoscraper | An option name that this source doesn't take. The message lists the ones it does. |
#ERR No data point "…" | The "field" path isn't in the response. Check the dot-path against the table above. |
#PREMIUM(field) | The field exists but your plan doesn't include it. |
#ERR Out of credits | The month's credits are spent. Usage resets on your billing date. |
Before the formula works
The add-in reads the API key you saved once in the side panel — the key never goes in the formula, so a shared sheet doesn't leak it and a collaborator without access simply sees the last calculated values.
- Install the add-in for Google Sheets or Excel.
- Open the side panel and sign in, or paste a key from your dashboard.
- Type the formula above into any cell.
Other ways to use Scrape SEO Data
Set up Scrape SEO Data on VerveSheets, or reach the same source a different way. Your VerveSheets account and credits work on all of them — one key, one balance.
Frequently asked questions
Does Scrape SEO Data work in both Google Sheets and Excel?
Yes — the same source, the same arguments, the same result. Google Sheets calls it =VERVE("seoscraper", A2, "field", "requestUrl") and Excel namespaces it as =VERVE.CALL("seoscraper", A2, "field", "requestUrl"). Filling a whole column is the one place the two differ: Sheets takes ranges directly, Excel fills down.
Do the cells recalculate on their own?
They recalculate when the sheet does — on edit, on open, or on a manual recalc. Each recalculation is a fresh call and spends credits, so for a large static column it's worth copying the results and pasting them as values.
How many credits does a filled column cost?
5 credits per row looked up, on both platforms and however you fill it. Repeated identical lookups in the same column are charged once. Batching changes how many HTTP calls are made, never the credit count.
Can I share the sheet without sharing my key?
Yes. The key is stored against your account, not in the file. Collaborators see the values already in the cells; formulas only recalculate for someone who has connected their own account.
Why is a cell showing #ERR instead of an error?
So you can read the reason. Excel can't display a custom message on a real spreadsheet error, so the add-in returns the explanation as text on both platforms instead.