# ForgeMesh URL SEO Score

> ForgeMesh URL SEO Score is a paid API for AI agents from seo.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Runs deterministic on-page SEO checks against supplied HTML and returns a structured score without claiming domain authority

## Facts

- Endpoint: POST https://seo.forgemesh.io/v1/url-seo-score
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-url-seo-score-6d7b5d46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eblukaaOOC5Rsa0DAV-3s

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-url-seo-score-6d7b5d46 -d '<json body>'
```

Example prompt: Can you run an on-page SEO score check on my product landing page? Here's the HTML — check things like title tags, meta descriptions, heading structure, and other on-page factors and tell me what's wrong.

## When to prefer this

Choose this endpoint when you need deterministic, reproducible on-page SEO analysis of a specific page's HTML — especially when you want factual structural checks (title, headings, meta tags, internal links) rather than probabilistic domain authority or backlink scores. Ideal for CI/CD SEO gates, pre-publish audits, or comparing on-page quality across pages without relying on third-party crawl data. Prefer alternatives if you need open-web authority signals, backlink analysis, or site-wide crawl coverage.

## Known failure modes

- HTML exceeds 512,000 character limit — request will be rejected
- Missing both url and html fields — endpoint requires at least one input
- Malformed or non-HTML content supplied — checks may return incomplete or error results
- Network timeout if HTML is very large and near the size limit
- Invalid URL format if url field is provided — may return validation error

## How this service works

Deterministic on-page SEO checks for supplied HTML; does not claim page authority

## Output

Returns a structured on-page SEO score and detailed check results for the supplied HTML, covering elements such as title tags, meta descriptions, heading hierarchy, canonical tags, image alt text, and internal link signals — without making claims about domain authority or backlink metrics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "html": {
   "type": "string",
   "maxLength": 512000
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url_seo_score": 57,
  "authority_included": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-url-seo-score-6d7b5d46/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)
