# ForgeMesh SEO Site Audit

> ForgeMesh SEO Site Audit is a paid API for AI agents from seo.forgemesh.io, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Audits supplied page HTML for on-page SEO issues, content duplication, and internal-link problems across up to 50 pages

## Facts

- Endpoint: POST https://seo.forgemesh.io/v1/site-audit
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-seo-site-audit-97705e14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u084pUfOy-F9eCEUadCU3

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 forgemesh-seo-site-audit-97705e14 -d '<json body>'
```

Example prompt: Can you audit these 3 pages from my blog for on-page SEO issues, duplicate content, and internal linking problems? Here are the URLs and their HTML: [page 1: https://myblog.com/post-1 with its HTML], [page 2: https://myblog.com/post-2], [page 3: https://myblog.com/post-3].

## When to prefer this

Choose this endpoint when you have raw HTML available for one or more pages and need a comprehensive, multi-dimensional audit covering on-page SEO, duplication, and internal linking in a single call. It is ideal for batch analysis of up to 50 pages in one request. Prefer this over the simpler deterministic on-page checks sibling endpoint when you also need duplication and internal-link analysis, not just isolated on-page tag checks.

## Known failure modes

- Empty or malformed HTML submitted for one or more pages returns a validation error
- Submitting more than 50 pages exceeds the maxItems limit and causes a request rejection
- Missing required 'url' or 'html' fields in any page object triggers a schema validation error
- Very large HTML payloads may cause timeouts or truncation
- Pages with heavily JavaScript-rendered content may yield incomplete analysis if raw HTML is submitted instead of rendered markup

## How this service works

Audit supplied site HTML for on-page, duplication, and internal-link problems

## Output

A structured report of SEO findings for each submitted page, covering on-page issues (e.g. missing or duplicate title tags, meta descriptions, heading hierarchy problems), content duplication signals across the supplied pages, and internal-link problems such as missing or broken links between the submitted URLs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "html"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "html": {
      "type": "string"
     },
     "text": {
      "type": "string"
     },
     "title": {
      "type": "string"
     }
    }
   },
   "maxItems": 50,
   "minItems": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-seo-site-audit-97705e14/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seo.forgemesh.io](https://www.zero.xyz/host/seo.forgemesh.io/llms.txt)
