# Rubric Protocol RegWatch Feed

> Rubric Protocol RegWatch Feed is a paid API for AI agents from rubric-protocol.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a structured, attested feed of regulatory changes affecting AI systems, including jurisdiction, instrument type, change type, effective dates, and comment deadlines.

## Facts

- Endpoint: GET https://rubric-protocol.com/v1/x402/regwatch-feed
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rubric-protocol-regwatch-feed-941b8e1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MFFUQmTYZmv3r4CJ_qDxA

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 rubric-protocol-regwatch-feed-941b8e1a
```

Example prompt: Pull the latest RegWatch feed so I can see any new AI regulatory changes, upcoming effective dates, and open comment deadlines across all jurisdictions — I need the attested version from Rubric Protocol.

## When to prefer this

Choose this endpoint when you need a curated, attested, machine-readable stream of AI regulatory changes across multiple jurisdictions, especially when cryptographic provenance or audit trails matter for compliance purposes. Prefer it over raw government data sources or general news feeds when you need structured fields (effective dates, comment deadlines, instrument type) and verifiable attestation rather than unstructured text.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- Feed temporarily unavailable — returns 5xx server error
- No new regulatory items in the feed — returns empty result set
- Malformed request — returns 400 Bad Request

## How this service works

Structured feed of regulatory changes affecting AI systems: jurisdiction, instrument, change type, effective dates, comm

## Output

A structured, curated feed of AI-related regulatory change items, each attested on ingest by Rubric Protocol. Each item includes the jurisdiction, regulatory instrument name, type of change (e.g. enacted, proposed, amended), effective date, and comment deadline where applicable. All data is cryptographically attested, providing verifiable provenance for compliance workflows.

## 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"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "format": {
     "type": "string"
    },
    "example": {}
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rubric-protocol-regwatch-feed-941b8e1a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rubric-protocol.com](https://www.zero.xyz/host/rubric-protocol.com/llms.txt)
