# ForgeMesh Internal Link Opportunities Finder

> ForgeMesh Internal Link Opportunities Finder is a paid API for AI agents from seo.forgemesh.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes supplied web pages to identify missing contextually relevant internal linking opportunities within a site

## Facts

- Endpoint: POST https://seo.forgemesh.io/v1/internal-link-opportunities
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-internal-link-opportunities-finder-a718a7b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6kpflMyVQmIKQqQwbJQbu

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-internal-link-opportunities-finder-a718a7b4 -d '<json body>'
```

Example prompt: Analyze these 10 pages on myblog.com for missing internal links — send the URLs and HTML for each and tell me which pages should be linking to which other pages but currently aren't.

## When to prefer this

Choose this endpoint when you need to identify specific missing internal links between pages of a known site, especially when you have access to page HTML or text. It is more targeted than a general site audit — use it when you want actionable link-building recommendations between existing pages rather than broader on-page or technical SEO issues. Prefer the full site audit sibling endpoint if you also need duplication or on-page checks in the same pass.

## Known failure modes

- No pages provided (minItems:1 violated) — validation error
- More than 50 pages submitted (maxItems:50 exceeded) — request rejected
- Pages missing required URL field — schema validation error
- Pages with no meaningful text content — no opportunities returned
- Domain mismatch between pages and domain field — may produce incorrect or empty results
- Payment failure via x402 protocol — 402 response, no analysis performed

## How this service works

Find missing contextually relevant internal links in supplied pages

## Output

A list of internal link opportunities, each identifying a source page that is missing a link to a contextually relevant target page within the same domain, likely including suggested anchor text and the rationale for the connection.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "evidence": {
   "mode": "deterministic_open"
  },
  "method_version": "v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-internal-link-opportunities-finder-a718a7b4/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)
