# Run a Shopify store SEO audit with a fix for every issue

**Use case:** 

Audit every page of a Shopify store for SEO. It checks titles, meta descriptions, H1, canonical, noindex, image alt text, broken internal links and mixed content. Each page gets a score from 0 to 100 and a fix for every issue. A summary row gives the site score and the top fixes. This example audits 20 pages of Shopify's Hydrogen demo store at $0.005 a page, at most $0.10.

## Input

```json
{
  "startUrl": "https://hydrogen.shop",
  "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`).
