# Edge Agents Forecast Verification

> Edge Agents Forecast Verification is a paid API for AI agents from pay.edge-agents.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves evidence-backed verification of macro forecasts with provenance, confidence assessment, and contradiction flags for a specific or latest matured forecast record.

## Facts

- Endpoint: GET https://pay.edge-agents.ai/v1/services/forecast-verification
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edge-agents-forecast-verification-eff3e026
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xWaZ4fleAgxKY0lhbemUz

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-forecast-verification-eff3e026
```

Example prompt: Can you pull the latest matured forecast verification report from Edge Agents and tell me the evidence quality, confidence level, and any limitations or contradictions it flagged?

## When to prefer this

Choose this endpoint when you need structured, evidence-backed verification of a specific macro forecast — including source provenance, confidence assessment, and contradiction detection — rather than raw data feeds or generic market summaries. It is ideal for autonomous agents and strategy teams that need bounded, signed decision intelligence with traceable lineage rather than unverified opinions or black-box predictions.

## Known failure modes

- Invalid or non-existent forecastId returns no matching record
- Data status may be 'partial' or 'unavailable' if evidence sources are incomplete
- Payment failure (402) if USDC payment is not completed before access
- Rate limiting or service downtime may prevent retrieval
- Forecast not yet matured returns no result (only matured records are served)

## How this service works

Edge Agents provides evidence-backed macro, market and decision intelligence for AI agents, individual leaders and investors, businesses and government teams requiring consulting, procurement and decision support. Machine services are purchasable per request over x402 on 5 settlement rails (Base/USDC, XRPL/RLUSD, Solana/USDC, Arbitrum/USDC and Polygon/USDC).

## Output

A JSON report containing: a service ID ('forecast-verification'), a unique delivery ID, a generated-at timestamp, data status (complete/partial/unavailable), an analysis object with family, intents, and summary, an evidence object with assets and source lineage, a quality object with status and confidence level, provenance with issuer and signature status, a disclaimer, a list of limitations, and a schema version string.

## 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": {
      "forecastId": {
       "type": "string",
       "description": "Immutable forecast identifier from the free bounded history index."
      }
     },
     "description": "Optionally select one immutable forecast ID; omitting it returns the latest matured record.",
     "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": "forecast-verification"
      },
      "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})$",
       "des
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "quality": {
   "status": "strong",
   "confidence": "high"
  },
  "analysis": {
   "family": "forecasting",
   "intents": [
    "evidence",
    "cycle",
    "forecast"
   ],
   "summary": "Fresh Macro Forecast Verification findings appear here."
  },
  "evidence": {
   "assets": [],
   "policy": "point-in-time",
   "sources": "Reported from the actual live report; never inferred from this example."
  },
  "serviceId": "forecast-verification",
  "dataStatus": "complete",
  "disclaimer": "General, impersonal market research; not investment advice or a buy, sell or hold recommendation.",
  "provenance": {
   "issuer": "https://edge-agents.ai",
   "signed": true
  },
  "generatedAt": "2026-08-31T00:00:00.000Z",
  "limitations": [
   "Coverage, source freshness and unavailable evidence are stated in every paid report."
  ],
  "schemaVersion": "2.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edge-agents-forecast-verification-eff3e026/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)
