# Run a WordPress SEO audit before a redesign

**Use case:** 

Audit a WordPress site before a redesign to get a baseline. Every page gets a score from 0 to 100 and a fix for each issue. Run it again after the redesign. Each page is then marked new, changed, unchanged or removed, with the issues it gained and lost. No plugin needed on the site. This example audits 20 pages of WordPress.org's news blog, for at most $0.10.

## Input

```json
{
  "startUrl": "https://wordpress.org/news/",
  "maxPages": 20,
  "discovery": "auto",
  "maxDepth": 5,
  "checkInternalLinks": true,
  "compareWithPreviousRun": true,
  "includeMarkdown": false,
  "slowThresholdMs": 3000,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "type": {
    "label": "Row",
    "format": "text"
  },
  "url": {
    "label": "Page",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "issueCount": {
    "label": "Issues",
    "format": "number"
  },
  "change": {
    "label": "Since last run",
    "format": "text"
  },
  "previousScore": {
    "label": "Previous score",
    "format": "number"
  },
  "statusCode": {
    "label": "Status",
    "format": "number"
  },
  "responseTimeMs": {
    "label": "Response (ms)",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "metaDescription": {
    "label": "Meta description",
    "format": "text"
  },
  "h1Count": {
    "label": "H1s",
    "format": "number"
  },
  "noindex": {
    "label": "Noindex",
    "format": "boolean"
  },
  "canonicalUrl": {
    "label": "Canonical",
    "format": "text"
  },
  "imagesMissingAlt": {
    "label": "Images without alt",
    "format": "number"
  },
  "brokenInternalLinks": {
    "label": "Broken internal links",
    "format": "array"
  },
  "issues": {
    "label": "Issues and fixes",
    "format": "array"
  },
  "newIssues": {
    "label": "New issues",
    "format": "array"
  },
  "finalUrl": {
    "label": "Final URL",
    "format": "text"
  },
  "audited": {
    "label": "Audited",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Site Audit: Full-Site SEO Audit with Fixes](https://apify.com/bjgomes/site-audit-seo.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bjgomes/site-audit-seo.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/bjgomes/site-audit-seo.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`).
