Docs
Exporting data
Copy or download every tag, the audit score, and the site-file results as JSON or CSV.
The Tags tab has an export bar with four buttons:
- Copy JSON - full PageMeta object to clipboard.
- Copy CSV - flat key/value/source/category rows to clipboard.
- Download .json - file named after the page’s hostname.
- Download .csv - same.
JSON schema
{
"title": "string | null",
"canonical": "string | null",
"icon": "string | null",
"tags": [
{ "key": "og:title", "value": "...", "source": "property", "category": "og" }
],
"hreflang": [{ "hreflang": "en", "href": "..." }],
"robots": { "robots": "...", "googlebot": "...", "noindex": false, "nofollow": false },
"jsonLd": { "entities": [...], "parseErrors": 0 }
}
source is one of property, name, title (for the synthetic title tag), or link (for canonical/icon).
category is one of og, twitter, seo, basic, other.
CSV format
Standard four-column CSV with header row: key,value,source,category. Values are escaped per RFC 4180 (double-quoted, embedded quotes doubled).
What’s not included
- Audit score and rule results (surfaced visually; the underlying score formula is documented in Audit rules).
- Site-file content (robots / sitemap / llms.txt). The Site tab shows them inline.