Skip to main content

Overview

The SEO Page Audit block audits a single page across accessibility, content, headings, images, links, meta tags, performance, schema, and technical checks. It returns either an AI-generated Markdown report with concrete fixes or the raw structured audit data. Use it to review pages before publishing or to flag issues at scale.

Configuration

Page URL (Required)

The URL of the page to audit. Must start with http:// or https://. Example:
You can reference placeholders from previous steps: {{step_1.output}}

Output Type

Choose the format of the result. Default: Markdown

Error Handling

Define what happens if the audit fails. Options:
  1. Terminate Workflow: Stop execution immediately.
  2. Continue Execution: Proceed to the next step despite the error.
Use Continue Execution when auditing many pages and a single failure should not stop the run.

Output Data

Markdown output

Returns a single Markdown report string. The report grounds every issue in the page’s actual data and ends with a Top Fixes ordered list of the highest-impact actions. Accessing the report: {{step_1.output}}

JSON output

Returns the raw audit object covering all nine audit categories.

Sample Output

Markdown output (returned as a single string):

Best Practices

  • Use Markdown output when a person will read the report or act on the fixes.
  • Use JSON output when later steps need specific metrics or programmatic checks.
  • Audit only public, reachable pages; private or blocked pages return no data.
  • Set Continue Execution inside a loop so one failed page does not halt the run.
  • Audits can take time on heavy pages; avoid auditing many pages in tight loops.

Common Use Cases


What’s Next