# Quickstart: SEO Audit Tool — Sitemap Crawler & Lighthouse Site 

**Use case:** 

Enter one website address and get a full-site audit: Google Lighthouse runs on every page it finds via sitemap, and the performance, SEO, accessibility and best-practices findings come back as flat, exportable rows — plus site-wide score summaries.

## Input

```json
{
  "startUrls": [
    "https://example.com"
  ],
  "maxUrlsPerDomain": 3,
  "categories": [
    "performance",
    "seo",
    "accessibility",
    "best-practices"
  ],
  "formFactors": [
    "mobile"
  ],
  "includePassedAudits": false,
  "includeSitemapInventory": false,
  "maxSitemapUrls": 100,
  "pageTimeoutSecs": 60,
  "maxRunSecs": 900,
  "maxResults": 500,
  "disclaimerAck": true
}
```

## Output

```json
{
  "rowType": {
    "label": "Row type",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "headline": {
    "label": "Verdict headline",
    "format": "text"
  },
  "verdict": {
    "label": "Verdict",
    "format": "text"
  },
  "topActions": {
    "label": "Fix first",
    "format": "array"
  },
  "immediateActions": {
    "label": "Site-wide actions",
    "format": "array"
  },
  "worstPages": {
    "label": "Worst pages",
    "format": "array"
  },
  "lcpMs": {
    "label": "LCP (ms)",
    "format": "number"
  },
  "cls": {
    "label": "CLS",
    "format": "number"
  },
  "tbtMs": {
    "label": "TBT (ms)",
    "format": "number"
  },
  "renderBlockingCount": {
    "label": "Render-blocking resources",
    "format": "number"
  },
  "robotsFound": {
    "label": "robots.txt found",
    "format": "boolean"
  },
  "crawlDelaySecs": {
    "label": "Crawl-delay (s)",
    "format": "number"
  },
  "declaredSitemaps": {
    "label": "Declared sitemaps",
    "format": "array"
  },
  "sitemapUrl": {
    "label": "From sitemap",
    "format": "link"
  },
  "lastmod": {
    "label": "Last modified",
    "format": "text"
  },
  "lastmodAgeDays": {
    "label": "Age (days)",
    "format": "number"
  },
  "changefreq": {
    "label": "Change frequency",
    "format": "text"
  },
  "priority": {
    "label": "Sitemap priority",
    "format": "number"
  },
  "robotsAllowed": {
    "label": "Allowed by robots.txt",
    "format": "boolean"
  },
  "duplicateCount": {
    "label": "Duplicate listings",
    "format": "number"
  },
  "wasAudited": {
    "label": "Audited in this run",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "formFactor": {
    "label": "Device",
    "format": "text"
  },
  "auditId": {
    "label": "Audit ID",
    "format": "text"
  },
  "auditTitle": {
    "label": "Audit",
    "format": "text"
  },
  "score": {
    "label": "Score (0-100)",
    "format": "number"
  },
  "displayValue": {
    "label": "Value",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "gapToBest": {
    "label": "Points behind leader",
    "format": "number"
  },
  "savingsMs": {
    "label": "Est. savings (ms)",
    "format": "number"
  },
  "savingsBytes": {
    "label": "Est. savings (bytes)",
    "format": "number"
  },
  "affectedUrls": {
    "label": "Affected pages",
    "format": "number"
  },
  "collectedAt": {
    "label": "Collected at",
    "format": "text"
  },
  "noticeCode": {
    "label": "Notice",
    "format": "text"
  },
  "message": {
    "label": "Message",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [SEO Audit Tool — Sitemap Crawler & Lighthouse Site Checker](https://apify.com/ntriqpro/lighthouse-website-audit.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ntriqpro/lighthouse-website-audit.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ntriqpro/lighthouse-website-audit.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
