# Edge Agents Evidence Quality Score

> Edge Agents Evidence Quality Score is a paid API for AI agents from pay.edge-agents.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Scores the quality and reliability of evidence underlying a market or macro decision, returning confidence level, evidence family, and provenance-signed analysis.

## Facts

- Endpoint: GET https://pay.edge-agents.ai/v1/services/evidence-quality-score
- 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/edge-agents-evidence-quality-score-9bcf86f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bWmlRH8FicxKIM97ZF73Z

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 edge-agents-evidence-quality-score-9bcf86f3
```

Example prompt: Can you run an evidence quality score on the momentum and cross-market signals around US tech equities right now — I need to know if the evidence is strong enough to bring to the board, including any contradictions and where the data comes from?

## When to prefer this

Choose this endpoint when you need a machine-readable, provenance-signed confidence score on the quality of market or macro evidence before committing to a strategic or financial decision. It is particularly valuable when decision accountability is high (board, CFO, autonomous agent pipelines) and you need explicit contradiction flags, source coverage statements, and a signed audit trail rather than a raw data dump. Prefer this over generic search or retrieval endpoints when evidence trustworthiness — not just availability — is the primary concern.

## Known failure modes

- Missing or malformed required query parameters — returns error indicating required fields
- No relevant evidence found for the specified topic — returns empty assets array with limitations noted
- Evidence coverage is insufficient — report still returned but limitations field explicitly states gaps
- Service unavailable or payment not processed — returns HTTP 402 if payment header is missing or 5xx on backend failure
- Stale evidence scenario — generatedAt timestamp and limitations array will flag freshness issues rather than silently returning stale data

## How this service works

Scores live market evidence coverage, source availability, cross-source validation and retained trend-window availability. Purpose: Give downstream agents an inspectable quality gate before they rely on Edge Agents market evidence. 5-minute freshness target; missing evidence is reported explicitly rather than invented.

## Output

A JSON object containing an evidence quality status (e.g. 'strong'), a confidence level (e.g. 'high'), an evidence family classification (e.g. 'cross-market'), intent tags (e.g. ['momentum', 'evidence']), a plain-language analysis summary, a list of referenced asset evidence (if any), data completeness status, provenance details including issuer URL and signing status, generation timestamp, schema version, stated limitations, and a standard disclaimer that the output is general market research rather than investment advice.

## 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": [],
     "properties": {},
     "description": "No parameters are required. The report is generated from fresh eligible evidence at purchase time.",
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "serviceId",
      "generatedAt",
      "dataStatus",
      "analysis"
     ],
     "properties": {
      "quality": {
       "type": "object",
       "description": "Evidence-quality assessment; not probability of profit."
      },
      "analysis": {
       "type": "object",
       "description": "Product-specific findings calculated from eligible evidence."
      },
      "evidence": {
       "type": "object",
       "description": "Observed evidence, providers, timestamps and source lineage supporting the analysis."
      },
      "reportId": {
       "type": "string",
       "description": "Product report identifier when the service exposes one."
      },
      "serviceId": {
       "type": "string",
       "const": "evidence-quality-score"
      },
      "dataStatus": {
       "enum": [
        "complete",
        "partial",
        "unavailable"
       ],
       "type": "string",
       "description": "Completeness of eligible evidence used by the live report."
      },
      "deliveryId": {
       "type": "string",
       "description": "Unique delivery identifier returned after a successful paid request."
      },
      "disclaimer": {
       "type": "string"
      },
      "provenance": {
       "type": "object",
       "description": "Issuer and signature/verification status when available."
      },
      "generatedAt": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d+)?(?:Z|[+-]\\d{2}:\\d{2})$",
       "description": "RFC3339 date-time timestamp."
      },
      "limitations": {
       "type": "array",
       "items": {
        "type": "string"
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edge-agents-evidence-quality-score-9bcf86f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.edge-agents.ai](https://www.zero.xyz/host/pay.edge-agents.ai/llms.txt)
