# White-Label SEO Audit Report (HTML) (`eliai/seo-audit-report`) Actor

Crawl a site and get back a finished audit report with your agency name and brand colour on it. Findings grouped by severity, each explaining why it costs traffic. Self-contained HTML that prints to PDF. One flat price per report — from $2.99 on paid plans.

- **URL**: https://apify.com/eliai/seo-audit-report.md
- **Developed by:** [Broke to Built](https://apify.com/eliai) (community)
- **Categories:** SEO tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $32.00 / 1,000 generated seo reports

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## SEO Audit Report — a document you can hand to a client

Point it at a website. It crawls the site and produces a **finished, client-ready HTML report**
with your agency's name and brand colour on it — not a JSON dump you have to turn into a document
yourself.

One flat price per report, whether you crawl 10 pages or 300.

***

### What you get

A single self-contained HTML file. No external requests, no fonts to load, works offline, and
prints straight to PDF from the browser.

**Cover band** — overall grade (A–F), average score, and counts of critical / warning / note.

**"What to fix, in order"** — every finding, sorted by severity, **grouped** so a problem appearing
on 40 pages is one line item with a page count instead of 40 repeated rows. Each finding carries a
plain-English explanation of *why it costs traffic*, so the report argues its own case to whoever
reads it.

**Weakest pages** — the lowest-scoring pages with their top issue, so the reader knows where fixing
returns the most.

### What it checks

**Across the site** — problems a single-page checker structurally cannot see:

- Redirect chains, with the number of hops
- Broken outbound links and unreachable pages
- Duplicate titles and duplicate meta descriptions, with the affected URLs
- Missing `robots.txt` or `sitemap.xml`

**Per page** — title and meta description length and presence, `<h1>` structure, canonical links,
`noindex` traps, HTTPS, images missing alt text, structured data that fails to parse, thin content,
and response time.

### White-labelling

| Field | Effect |
|---|---|
| `agencyName` | Appears in the report header and footer — "Prepared by {you}" |
| `accentColor` | Your hex brand colour drives the top rule, headings and severity accents |

Leave both blank for a clean unbranded report.

### Input

```json
{
  "startUrl": "https://client-website.com/",
  "maxPages": 50,
  "agencyName": "Northgate Digital",
  "accentColor": "#B3452E"
}
```

### Output

One dataset record with the summary, all findings, and a direct link to the report file:

```json
{
  "site": "https://client-website.com/",
  "pagesAudited": 50,
  "averageSeoScore": 78,
  "grade": "C",
  "issueCounts": { "critical": 2, "warn": 14, "note": 31 },
  "reportUrl": "https://api.apify.com/v2/key-value-stores/.../records/seo-audit-....html",
  "whiteLabelled": true,
  "summary": "50 pages · grade C (78/100) · 2 critical, 14 warnings, 31 notes"
}
```

`reportUrl` is the deliverable — open it, or send it straight to your client.

### For agents and automation

- **Capability:** crawl a website and produce a formatted SEO audit document
- **Required input:** `startUrl`
- **Returns:** one record; `reportUrl` points to a self-contained HTML document
- **Bounded:** `maxPages` caps the crawl; the crawler stays on the starting origin
- **Side effects:** none — reads public pages, writes the report to this run's key-value store
- **Failure:** if no page can be crawled the run fails with a clear message and **is not charged**

### Pricing

One flat fee per report generated. Page count does not change the price. If the crawl produces no
pages, no report exists and you are not charged.

### FAQ

**How do I create an SEO report I can send to a client?** Pass the client's site as `startUrl` with your `agencyName` and `accentColor` — the run returns `reportUrl`, a finished branded HTML document. Open it, print to PDF, send it. No design work.

**Is the report really white-label?** Yes — your agency name appears in the header and footer ("Prepared by {you}") and your hex colour drives the headings and severity accents. Leave both blank for a clean unbranded report.

**How many pages does it crawl?** Up to `maxPages` (your cap), staying on the starting origin. The price is flat per report whether it crawls 10 pages or 300 — from $2.99 on paid plans.

**What does the report cover?** Site-wide problems a single-page checker cannot see (redirect chains, broken links, duplicate titles/descriptions, missing robots.txt or sitemap) plus per-page checks (title/meta length, H1 structure, canonicals, noindex traps, HTTPS, image alt, structured data, thin content, response time) — every finding with a plain-English explanation of why it costs traffic.

**Can I automate a report per client per month?** Yes — put it on an Apify schedule per client, and pull `reportUrl` from each run via the API or a webhook. The report is self-contained HTML, so it can be emailed or archived as-is.

### For AI agents

This Actor is built to be called by software, not just by people.

- **Mount it directly as an MCP tool** — no Store search, no ranking, just this one tool:
  `https://mcp.apify.com/?actors=eliai/seo-audit-report`
- **Or call it over HTTP** and get the results in the same request:
  `POST https://api.apify.com/v2/acts/eliai~seo-audit-report/run-sync-get-dataset-items`
- **Pay with x402, without an Apify account.** This Actor is whitelisted for agentic payments, so an agent holding USDC on Base can buy a prepaid token and spend it here. The minimum purchase is $1, the token balance is an absolute spending cap, and it expires 14 days after purchase.
- **Costs are predictable before you call.** Pricing is pay-per-event (see Pricing above), so an agent can budget a run in advance instead of discovering the bill afterwards.
- **Send only the field you mean.** If you pass the bulk field, it is used on its own; the single-value field is a fallback, never merged into your request. You are charged for the items you sent and nothing else.

# Actor input Schema

## `startUrl` (type: `string`):

The homepage. The crawler follows internal links from here.

## `maxPages` (type: `integer`):

More pages means a more complete report. One flat price regardless.

## `agencyName` (type: `string`):

Appears on the report header and footer, so you can hand it to a client as your own work. Leave blank for an unbranded report.

## `accentColor` (type: `string`):

Hex code, e.g. #1F5FA9. Used for the report's accent rule and headings.

## `checkOutboundLinks` (type: `boolean`):

Verifies external links still resolve. Adds a little time.

## Actor input object example

```json
{
  "startUrl": "https://apify.com/",
  "maxPages": 50,
  "accentColor": "#1F5FA9",
  "checkOutboundLinks": true
}
```

# Actor output Schema

## `results` (type: `string`):

Every item this run produced, as JSON.

## `resultsCsv` (type: `string`):

The same items as a spreadsheet-ready CSV.

## `files` (type: `string`):

Files this run produced (images, screenshots, reports).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrl": "https://apify.com/",
    "agencyName": ""
};

// Run the Actor and wait for it to finish
const run = await client.actor("eliai/seo-audit-report").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrl": "https://apify.com/",
    "agencyName": "",
}

# Run the Actor and wait for it to finish
run = client.actor("eliai/seo-audit-report").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrl": "https://apify.com/",
  "agencyName": ""
}' |
apify call eliai/seo-audit-report --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,eliai/seo-audit-report"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/YREYR9mqQMNftSGIG/builds/AaBiemCaxnIps1uvl/openapi.json
