# Operator Zero (`operator_zero/operator-zero`) Actor

Audit public webpages for SEO, conversion readiness, security headers, structured data, social metadata, and technical issues. Returns a deterministic score, grade, failed checks, and prioritized recommendations. Pay per checked URL.

- **URL**: https://apify.com/operator\_zero/operator-zero.md
- **Developed by:** [OPERATOR ZERO](https://apify.com/operator_zero) (community)
- **Categories:** Automation, Developer tools, SEO tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $20.00 / 1,000 website site checks

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## OZ Site Readiness Check — Apify Actor

A deterministic, read-only website readiness product for the Apify Store. This is an independent revenue channel from Operator Zero's direct x402 APIs.

### What buyers get

For each public HTTP/HTTPS page, the Actor returns a 0–100 readiness score and grade, plus checks for:

- HTTP availability and response time
- page title and meta description
- canonical URL
- H1 structure
- mobile viewport
- Open Graph and Twitter metadata
- JSON-LD structured data
- contact/trust signals
- conversion CTA signals
- basic security headers
- prioritized remediation targets

The Actor performs no login, mutation, outreach, or private-data access. Private/local network destinations are blocked.

### Monetization

Use Apify **pay-per-event** pricing with the event name `site-check`.

Recommended launch price: **$0.02 per checked URL**. The code charges one `site-check` event before processing each URL and stops when the buyer's configured spending limit is reached.

This Actor deliberately does not use Standby mode and is designed for limited permissions, which keeps it eligible for Apify agentic payment discovery when the Store configuration meets Apify's requirements.

### Local test

```bash
npm install
ACTOR_TEST_PAY_PER_EVENT=true npm start
```

Provide input in the local Apify storage input or run through the Apify tooling with:

```json
{
  "urls": ["https://example.com"]
}
```

### Publication checklist

1. Create/import the Actor in Apify Console.
2. Complete Apify billing/payment details required for creator monetization.
3. Set pricing model to **Pay per event**.
4. Define `site-check` at **$0.02/event** to start.
5. Keep permissions limited and Standby disabled.
6. Publish to Apify Store.
7. Verify Store run, PPE charge, and agentic-payment eligibility before marking the stream VERIFIED.

# Actor input Schema

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

One to 25 public HTTP/HTTPS pages. Private, localhost and local-network destinations are blocked.

## Actor input object example

```json
{
  "urls": [
    "https://example.com"
  ]
}
```

# Actor output Schema

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

One deterministic audit result for each processed public URL.

## `runSummary` (type: `string`):

Run-level summary including requested and completed URL counts and billing event metadata.

# 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 = {
    "urls": [
        "https://example.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("operator_zero/operator-zero").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 = { "urls": ["https://example.com"] }

# Run the Actor and wait for it to finish
run = client.actor("operator_zero/operator-zero").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 '{
  "urls": [
    "https://example.com"
  ]
}' |
apify call operator_zero/operator-zero --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,operator_zero/operator-zero"
        }
    }
}

```

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/3dmZddtYYVlZYQzze/builds/o9adgCxWydEReBN1g/openapi.json
