# SEO Meta & Web Design Auditor \[Site Audit Scraper] (`thecfmarketing/seo-meta-web-design-auditor-site-audit-scraper`) Actor

Extract Meta Title, Description, H1, OG tags, Schema, CTA Buttons, Demo/Trial intent signals, Testimonials, Case Studies, and automated Web Dev Pitch reasons.

- **URL**: https://apify.com/thecfmarketing/seo-meta-web-design-auditor-site-audit-scraper.md
- **Developed by:** [sadique shaikh](https://apify.com/thecfmarketing) (community)
- **Categories:** SEO tools, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 domain seo auditeds

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/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

## 📈 B2B Website SEO Meta, Sales Intelligence & Design Auditor

[![Apify Actor](https://apify.com/actor-badge?actor=validatormails/b2b-seo-sales-audit-scraper)](https://apify.com/validatormails/b2b-seo-sales-audit-scraper)
[![Pay Per Event](https://img.shields.io/badge/Pricing-Pay%20Per%20Event-brightgreen)](#-pricing--pay-per-event-ppe)

Analyze website SEO meta tags, OpenGraph data, conversion intent signals, social proof elements, and generate automated design scores with personalized cold email pitch angles.

***

### 📌 Table of Contents

- [🌟 Key Features](#-key-features)
- [🎯 Automated Cold Pitch Reasons](#-automated-cold-pitch-reasons)
- [📥 Input Parameters](#-input-parameters)
- [📤 Output Dataset Example](#-output-dataset-example-json)
- [💻 Integration Examples](#-integration-examples)
- [💳 Pricing & Pay-Per-Event](#-pricing--pay-per-event-ppe)
- [❓ Frequently Asked Questions](#-frequently-asked-questions)

***

### 🌟 Key Features

- 🔍 **SEO Meta Tags:** Title, Description, H1 Heading.
- 🖼️ **Social Sharing OpenGraph:** OG Title, OG Image URL preview.
- 📐 **Structured Data:** Schema.org JSON-LD detection.
- 🎯 **Sales Intent Triggers:** Detects "Book Demo", "Free Trial", "Request Quote", "Schedule Meeting".
- 🏆 **Social Proof Verification:** Customer Testimonials, Client Logos, Case Studies.
- 🎨 **Automated Design Rating:** Evaluates visual hierarchy and layout style (Score 1 to 5).
- 📱 **Mobile Responsiveness Check:** Viewport tag analysis.
- 📄 **1-Page Brochure Site Detection:** Identifies minimal single-page websites.

***

### 🎯 Automated Cold Pitch Reasons

The engine automatically produces cold outreach pitch reasons:

- Missing Mobile Viewport Tag -> *"Website is not mobile responsive"*
- Missing HTTPS SSL -> *"Website lacks secure HTTPS SSL certificate"*
- Single Page Site -> *"Minimal 1-page site needs multi-page conversion funnel"*
- Outdated Layout -> *"Design score 1/5 - strong candidate for web redesign pitch"*

***

### 📥 Input Parameters

| Parameter | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `domainsText` | String | *Required* | List of domain names or URLs separated by newlines. |
| `maxThreads` | Integer | `15` | Parallel execution threads. |
| `timeout` | Integer | `10` | Request timeout per URL in seconds. |

```json
{
  "domainsText": "stripe.com\nshopify.com",
  "maxThreads": 15,
  "timeout": 10
}
```

***

### 📤 Output Dataset Example (JSON)

```json
{
  "domain": "example.com",
  "status": "Online",
  "load_time_sec": 1.20,
  "seo_title": "Enterprise B2B Software Solutions",
  "seo_description": "Transform your sales pipeline with automated intelligence.",
  "seo_h1": "Accelerate Sales Growth",
  "og_title": "Enterprise B2B Software",
  "og_image": "https://example.com/og-preview.png",
  "has_schema_org": true,
  "has_cta_buttons": true,
  "intent_book_demo": true,
  "intent_free_trial": true,
  "intent_request_quote": false,
  "social_proof_testimonials": true,
  "design_score": 4,
  "design_style": "Modern",
  "is_1_page_website": false,
  "responsive_mobile": true,
  "pitch_web_dev": false,
  "pitch_reasons": []
}
```

***

### 💻 Integration Examples

#### Node.js / JavaScript

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

const client = new ApifyClient({ token: 'YOUR_API_KEY' });
const run = await client.actor('validatormails/b2b-seo-sales-audit-scraper').call({
    domainsText: 'stripe.com\nshopify.com',
    maxThreads: 15
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

#### Python

```python
from apify_client import ApifyClient

client = ApifyClient('YOUR_API_KEY')
run = client.actor('validatormails/b2b-seo-sales-audit-scraper').call(run_input={
    'domainsText': 'stripe.com\nshopify.com',
    'maxThreads': 15
})

for item in client.dataset(run['defaultDatasetId']).iterate_items():
    print(item)
```

***

### 💳 Pricing & Pay-Per-Event (PPE)

- **$0.0050 per domain processed** ($5.00 per 1,000 domains).
- You only pay for successful website audits.

# Actor input Schema

## `domainsText` (type: `string`):

Enter domain names or URLs to audit (e.g. shopify.com, stripe.com).

## `maxThreads` (type: `integer`):

Number of parallel thread workers (Default: 15).

## `timeout` (type: `integer`):

Maximum seconds to wait for website HTTP response (Default: 12).

## Actor input object example

```json
{
  "domainsText": "shopify.com\nstripe.com",
  "maxThreads": 15,
  "timeout": 12
}
```

# 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 = {
    "domainsText": `shopify.com
stripe.com`
};

// Run the Actor and wait for it to finish
const run = await client.actor("thecfmarketing/seo-meta-web-design-auditor-site-audit-scraper").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 = { "domainsText": """shopify.com
stripe.com""" }

# Run the Actor and wait for it to finish
run = client.actor("thecfmarketing/seo-meta-web-design-auditor-site-audit-scraper").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 '{
  "domainsText": "shopify.com\\nstripe.com"
}' |
apify call thecfmarketing/seo-meta-web-design-auditor-site-audit-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,thecfmarketing/seo-meta-web-design-auditor-site-audit-scraper"
        }
    }
}

```

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/AmibVssWNaWm8L4HG/builds/gkhBfOU3F4xg80I9e/openapi.json
