# SEO & Security Web Auditor (`sootesting/website-seo-security-auditor`) Actor

Audits any list of URLs for SEO, security headers, Open Graph/Twitter cards and technical health, and outputs a structured CSV/JSON report.

- **URL**: https://apify.com/sootesting/website-seo-security-auditor.md
- **Developed by:** [soot](https://apify.com/sootesting) (community)
- **Categories:** SEO tools, Developer tools
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.01 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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 & Security Web Auditor

Audits any list of URLs for SEO, security headers, Open Graph/Twitter cards and technical health, and outputs a structured CSV/JSON report.

### 🚀 What it does

This Actor automates a task that would otherwise take hours of manual work. It is built for **batch processing** — run it once on a list of inputs and get a structured, downloadable report.

### ✨ Features

- <b>Batch processing</b> — handle one or many inputs in a single run
- <b>Structured output</b> — clean tables, ready for CSV/JSON export
- <b>Pay-per-event pricing</b> — you only pay for what you use
- <b>API & CLI ready</b> — integrate it into any workflow

### 📥 Input configuration

Configure the Actor with these fields:

<table>
<thead><tr><th>Field</th><th>Type</th><th>Required</th><th>Description</th></tr></thead>
<tbody>
</tbody>
</table>

### 💡 Usage example

#### Run via Apify API (cURL)

```bash
curl -X POST "https://api.apify.com/v2/acts/sootesting~website-seo-security-auditor/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "urls": [
    "https://example.com"
  ]
}'
```

#### Run via Apify CLI

```bash
apify run --actor-name sootesting~website-seo-security-auditor --input '{
  "urls": [
    "https://example.com"
  ]
}'
```

### 📤 Output schema

The Actor produces the following structured data:

<table>
<thead><tr><th>Field</th><th>Type</th><th>Description</th></tr></thead>
<tbody>
</tbody>
</table>

### 💰 Pricing

Pay-per-event. See the Actor's pricing tab for current rates. You are only charged for successful events — platform usage is passed through transparently.

### 🔗 Related

Part of the <b>Sootesting SEO & Data Toolkit</b> — a suite of focused actors for technical SEO, security auditing, and data extraction.

***

<sub>Generated with structured, semantic formatting for maximum readability in Apify Store.</sub>

# Actor input Schema

## `urls` (type: `array`):

One or more URLs to audit

## `maxConcurrency` (type: `integer`):

Max number of parallel page fetches

## `lowercaseHeaders` (type: `boolean`):

Whether to normalize header names to lowercase

## `timeoutSec` (type: `integer`):

Request timeout in milliseconds per URL

## `outputFormat` (type: `string`):

Output file format saved to KeyValueStore

## `userAgent` (type: `string`):

User-Agent header sent with requests

## Actor input object example

```json
{
  "maxConcurrency": 5,
  "lowercaseHeaders": true,
  "timeoutSec": 8000,
  "outputFormat": "csv",
  "userAgent": "apify/seo-security-auditor/1.0"
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("sootesting/website-seo-security-auditor").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("sootesting/website-seo-security-auditor").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{}' |
apify call sootesting/website-seo-security-auditor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=sootesting/website-seo-security-auditor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/hAaC4SqzWibUpCZje/builds/fwWwSiwbIwkWh0kij/openapi.json
