# OIX RegWatch AI — US AI Governance Regulatory Intelligence

> OIX RegWatch AI — US AI Governance Regulatory Intelligence is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.25/call, status down (last checked 2026-08-31).

Returns decision-ready regulatory change observations for US AI governance, sourced from primary federal registers, with OIX evidence scores and cryptographic proof digests.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/regwatch-ai
- Price: $0.25/call
- Payment: x402
- Status: down
- Last checked: 2026-08-31
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-regwatch-ai-us-ai-governance-regulatory-intelligence-a6d97fd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8gQZX_g4-KWiR1NpTBNVH

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 oix-regwatch-ai-us-ai-governance-regulatory-intelligence-a6d97fd5
```

Example prompt: Pull the latest US AI governance regulatory observations from RegWatch AI — give me up to 10 results with an OIX evidence score of at least 70, focusing on anything related to federal rulemaking.

## When to prefer this

Choose this endpoint when you need cryptographically attested, evidence-scored US AI governance regulatory intelligence pulled directly from primary federal sources (e.g. Federal Register API), delivered as a machine-readable structured report with on-chain settlement proof. Prefer it over generic news APIs or web scrapers when audit-grade provenance and OIX evidence scoring are required for compliance workflows.

## Known failure modes

- Payment not received (402 response) — x402 USDC payment on Base mainnet required before data is returned
- Query term matches no current observations — returns empty observations array with monitoredRecords count intact
- minScore too high — filters out all observations, returning empty list
- limit parameter out of range (must be 1–25) — validation error
- Service unavailable on fly.dev host — generic 5xx response with no data

## How this service works

Package any earning logic as an autonomous asset. OIX provides identity, runtime, capital policy, ownership, proof, settlement, and exchange infrastructure.

## Output

A JSON object containing: asset metadata (name, slug, market), cryptographic proof (report and source SHA-256 digests), product offer details (price, settlement chain), and a decision block with a list of regulatory observations each including URL, OIX evidence score, title, and evidence payload — plus total monitored record count and returned observation count.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "description": "Optional term matched against the current source-backed observations."
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum observations returned."
      },
      "minScore": {
       "type": "integer",
       "default": 0,
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum OIX evidence score."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": {
   "name": "RegWatch AI",
   "slug": "regwatch-ai",
   "market": "US AI governance"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Decision-ready regulatory change report",
   "price": "0.25 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "AI governance teams",
   "observations": [
    {
     "url": "https://www.federalregister.gov/developers/documentation/api/v1",
     "score": 90,
     "title": "Primary-source market signal",
     "evidence": {}
    }
   ],
   "monitoredRecords": 40,
   "returnedObservations": 25
  },
  "protocol": "oix.machine-report/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oix-regwatch-ai-us-ai-governance-regulatory-intelligence-a6d97fd5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oix-autonomous-economy.fly.dev](https://www.zero.xyz/host/oix-autonomous-economy.fly.dev/llms.txt)
