# OIX RegWatch Climate — US Climate Disclosure Regulatory Monitor

> OIX RegWatch Climate — US Climate Disclosure Regulatory Monitor 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-09-15).

Returns a decision-ready report of current US climate disclosure regulatory changes, sourced from primary government records and scored by OIX evidence quality.

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/regwatch-climate
- Price: $0.25/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oix-regwatch-climate-us-climate-disclosure-regulatory-monitor-dd92dd70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qH5jD_GU_0IcWN1rpkpEh

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-climate-us-climate-disclosure-regulatory-monitor-dd92dd70
```

Example prompt: Pull the latest US climate disclosure regulatory observations from RegWatch Climate — give me up to 25 results with a minimum OIX evidence score of 70, focusing on SEC disclosure rules.

## When to prefer this

Choose this endpoint when you need primary-source, evidence-scored US climate disclosure regulatory observations in a structured, machine-readable format — particularly for sustainability teams, ESG compliance workflows, or finance teams tracking SEC climate rules. It is distinct from general news APIs because observations are sourced from government registries (e.g. Federal Register) and carry cryptographic proof digests for auditability. Prefer this over manual regulatory monitoring or generic news search when you need scored, decision-ready regulatory intelligence with on-chain settlement.

## Known failure modes

- Payment not received or x402 payment header missing — returns 402 Payment Required
- Invalid query parameter types (e.g. limit > 25 or minScore > 100) — returns 400 Bad Request
- Upstream Federal Register API unavailable — may return 503 or empty observation list
- No observations match the query term or minScore threshold — returns empty observations array
- Network timeout connecting to oix-autonomous-economy.fly.dev — returns connection error

## 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 report containing the asset metadata (name, slug, market), cryptographic proof digests (report and source SHA-256 hashes), product offer details (price, settlement chain), and a decision payload listing regulatory observations each with a URL, OIX evidence score (0–100), title, and evidence object — plus counts of total monitored records and returned observations.

## 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 Climate",
   "slug": "regwatch-climate",
   "market": "US climate disclosure"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Decision-ready regulatory change report",
   "price": "0.25 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "Sustainability and finance 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-climate-us-climate-disclosure-regulatory-monitor-dd92dd70/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)
