# ForgeMesh SEO Competitor Content Gap Analyzer

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

Identifies topics, keywords, and content areas covered by competitor sites that are missing from a customer-supplied site

## Facts

- Endpoint: POST https://seo.forgemesh.io/v1/competitor-gap
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-seo-competitor-content-gap-analyzer-5863aa94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h6nI2WPGJQwuV9eghZ64b

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-competitor-content-gap-analyzer-5863aa94 -d '<json body>'
```

Example prompt: Can you analyze content gaps between my site mybrand.com (I'll give you up to 10 pages including their URLs and HTML) and my top 3 competitors — techcrunch.com, wired.com, and theverge.com — so I know which topics they cover that I'm completely missing?

## When to prefer this

Choose this endpoint when you need to systematically identify content topics that competitors cover but your own site lacks, specifically for SEO strategy purposes. It is distinct from general on-page SEO auditing (which checks HTML quality of your own site) and from keyword generation (which generates opportunities without competitor grounding). Use this when you have concrete competitor domains to benchmark against and want actionable content gaps rather than generic keyword ideas. Best suited for content strategists, SEO managers, and marketing agents building editorial calendars based on competitive positioning.

## Known failure modes

- Too few pages supplied (minimum 1 required, but gaps analysis quality degrades with sparse input)
- Competitor objects missing required fields causing validation errors
- More than 50 pages submitted for the customer site exceeds maxItems limit
- More than 10 competitors submitted exceeds maxItems limit
- Competitor HTML not supplied, limiting depth of gap analysis to URL/title signals only
- Customer domain mismatch with supplied page URLs causing ambiguous analysis
- 402 Payment Required if x402 payment header is missing or insufficient
- Timeout on large HTML payloads across many pages

## How this service works

Find content gaps across customer-supplied competitor sites

## Output

Returns a structured list of content gaps — topics, themes, or keyword clusters that competitor sites cover but the customer's supplied pages do not. Likely includes per-gap details such as which competitors address the topic, relative coverage depth, and prioritization signals. Helps content teams build a roadmap of missing content to close competitive SEO gaps.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "site": {
   "type": "object",
   "required": [
    "domain",
    "pages"
   ],
   "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"
    }
   }
  },
  "competitors": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "maxItems": 10,
   "minItems": 1
  }
 }
}
```

## 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-seo-competitor-content-gap-analyzer-5863aa94/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)
