# ForgeMesh Domain Authority Score

> ForgeMesh Domain Authority 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-14).

Returns a domain authority score for a given domain derived from open-web Common Crawl graph metrics

## Facts

- Endpoint: GET https://seo.forgemesh.io/v1/domain-authority
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-domain-authority-score-434b1645
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UdTscuzRIMC9sYnWaAROg

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-domain-authority-score-434b1645
```

Example prompt: What's the domain authority score for nytimes.com based on Common Crawl graph data?

## When to prefer this

Prefer this endpoint when you need an open-web, freely reproducible domain authority metric derived from Common Crawl data rather than proprietary metrics from Moz, Ahrefs, or Semrush. It is ideal for agents that require transparent, non-black-box authority signals, or when budget constraints favor per-call pricing over a subscription to commercial SEO tools.

## Known failure modes

- Domain not found in Common Crawl index — low or zero score returned
- Malformed or missing domain parameter — validation error
- Domain too new or rarely crawled — score may be inaccurate or unavailable
- Rate limiting or payment failure for x402 calls

## How this service works

Open-web domain authority from Common Crawl graph metrics

## Output

Returns a numeric domain authority score along with its component breakdown and source metadata derived from the Common Crawl web graph, giving insight into the open-web link authority of the queried domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "source": {
       "type": "object"
      },
      "components": {
       "type": "object"
      },
      "domain_authority_score": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "example.com",
  "domain_authority_score": 73.4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-domain-authority-score-434b1645/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)
