get_page_comparison

Retrieve detailed comparison results, SEO side-by-side data, issues with lens provenance, and evidence

Overview

Retrieve the full comparison results for a specific page after it has been analyzed. Returns match scores, all tracked issues with lens provenance (which analysis lens detected each issue and with what model), evidence URLs for screenshots and videos, the AI SEO fix prompt, and SEO side-by-side data showing on-page SEO elements (title tags, h1-h6, meta descriptions, canonical URLs, image alt texts, internal links, schema markup) for both source and clone pages.

How It Works

  1. Looks up the page by source URL across all your cloning jobs.
  2. Returns status-specific responses: not_tracked, not_compared, in_progress, error, or compared.
  3. For compared pages: includes match scores (overall, SEO, content, visual), all issues sorted by severity, lens detection details, evidence URLs, and SEO element side-by-side data.
  4. Issues include the specific lens(es) that detected them, the model used, and confidence scores.
  5. SEO side-by-side data is in lens_results[seo].subtype_data — fields prefixed source_ and clone_ contain extracted on-page SEO elements.

Input Parameters

ParameterTypeRequiredDescription
source_url string required URL of the source (original) page to look up

What You Get Back

Example Use Case

After running compare_page_pair, call get_page_comparison to see the full results including which lenses detected each issue, view screenshot evidence, SEO element comparison, and get the AI-generated SEO fix prompt.

Tips

Call this after compare_page_pair finishes — it returns the same data available in the dashboard but structured for MCP agents.
Issues are sorted by severity (critical first) so agents can prioritize fixes.
Each issue includes which lens(es) detected it, helping you understand the source of each finding.
Fix prompts for each lens are in comparison_history lens_results (llm_fix_prompt field on each lens entry).
SEO side-by-side fields are in lens_results where lens=seo → subtype_data. Fields like source_title, clone_title, source_h1, clone_h1, source_h2_tags (JSONB array), etc.

Related Tools