# Aegis AI URL Content Quality Scorer

> Aegis AI URL Content Quality Scorer is a paid API for AI agents from aegis-ai.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches a URL's content and scores it for quality using AI-derived V/C/L metrics

## Facts

- Endpoint: GET https://aegis-ai.xyz/api/d2a/score
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aegis-ai-url-content-quality-scorer-be2823d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jdtfkBvC6Oa98noYe1mBW

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 aegis-ai-url-content-quality-scorer-be2823d1
```

Example prompt: Can you score the content quality of this article — https://example.com/news/some-article — and give me the V/C/L metrics so I can tell if it's worth reading?

## When to prefer this

Use this endpoint when you need a structured, AI-generated quality assessment (V/C/L metrics) for a specific web article or page, especially for filtering or ranking content in a pipeline. Prefer it over generic readability tools when you need the specific Aegis V/C/L scoring framework, or when integrating with the Aegis briefing feed to evaluate individual articles.

## Known failure modes

- URL is unreachable or returns non-200 status — scoring fails with fetch error
- URL points to non-article content (e.g. login wall, PDF, dynamic JS app) — extraction may be incomplete or empty
- URL exceeds 2048 character limit — request rejected with validation error
- URL does not start with http:// or https:// — rejected by schema validation
- Payment not included or insufficient — 402 Payment Required response
- Rate limiting or timeout on the target URL — may return partial or failed score

## How this service works

Score a URL's content quality (V/C/L) with AI

## Output

Returns a structured quality assessment of the content at the given URL, including V (value), C (credibility), and L (legibility) scores computed by AI after fetching and analyzing the page content.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "pattern": "^https?://",
       "maxLength": 2048,
       "description": "HTTP(S) URL of the article to extract and score."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aegis-ai-url-content-quality-scorer-be2823d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aegis-ai.xyz](https://www.zero.xyz/host/aegis-ai.xyz/llms.txt)
