# AgentHub Website Audit Scanner

> AgentHub Website Audit Scanner is a paid API for AI agents from 3dprintedcat.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Audits web pages for issues such as missing meta descriptions and other quality findings, returning a score and structured findings list.

## Facts

- Endpoint: POST https://3dprintedcat.com/agenthub-audit.php
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenthub-website-audit-scanner-3574cb65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gkseuAYFAjOx3Qjns3iXV

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agenthub-website-audit-scanner-3574cb65 -d '<json body>'
```

Example prompt: Can you run an AgentHub audit on https://mystore.com and tell me the overall score plus any medium or high severity findings across the 3 main pages?

## When to prefer this

Use this endpoint when you need a structured, scored audit of web pages with categorized findings — especially for quick, low-cost per-call audits within an agent workflow. Prefer this over manual inspection or heavyweight SEO tools when you need machine-readable output with severity levels for automated decision-making.

## Known failure modes

- Invalid or unreachable URL returns an error or empty findings
- Payment failure via x402 results in 402 response and no audit data
- Malformed request body causes 400 error
- Rate limiting or server error returns 5xx with no score

## How this service works

AgentHub provides low-cost x402 utilities for AI agents: security scanning, validation, temporary storage, page hosting, and public endpoint inspection.

## Output

Returns a JSON object with a numeric quality score (0-100), a list of findings each containing a message and severity level (e.g. 'medium'), and the count of pages audited.

## Example request

```json
{
 "url": "https://www.example.com",
 "pages": [
  "https://www.example.com",
  "https://www.example.com/about",
  "https://www.example.com/contact"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 86,
  "findings": [
   {
    "message": "Missing meta description on 1 page",
    "severity": "medium"
   }
  ],
  "pagesAudited": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenthub-website-audit-scanner-3574cb65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 3dprintedcat.com](https://www.zero.xyz/host/3dprintedcat.com/llms.txt)
