# ClearCheck Federal Register Monitor

> ClearCheck Federal Register Monitor is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Searches recent Federal Register activity on a topic, returning final vs proposed rules, active agencies, upcoming effective dates, and a plain-language verdict.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/rules
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-federal-register-monitor-b2a8af26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7zhnrAieCGr1S6LSwyqSP

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 clearcheck-federal-register-monitor-b2a8af26
```

Example prompt: Search the Federal Register for any rules or proposed rules published in the last 60 days on telehealth — show me which agencies are involved, which are final vs proposed, and what's not yet in effect.

## When to prefer this

Use this endpoint when you need to monitor or research U.S. federal regulatory activity on a specific topic — particularly when you need to distinguish final rules from proposed rules, identify which agencies are active, or track upcoming effective dates. Prefer this over general web search when you need structured, authoritative Federal Register data with a compliance-oriented verdict rather than raw search results.

## Known failure modes

- No documents found for an obscure or misspelled topic — returns empty document list
- Federal Register API unavailable — endpoint may return 5xx or timeout
- Invalid document type enum value — schema validation error
- Very broad topics may return large result sets that exceed payload limits
- Lookback window set too short may miss relevant documents

## How this service works

Federal Register activity on a topic: what published recently, final vs proposed, which agencies, what takes effect.

## Output

Returns a structured summary including: total document count, counts of final rules, proposed rules, and not-yet-effective items; a list of individual documents with title, type, publishing agency, abstract, publish date, and effective date; top agencies by activity; upcoming effective dates; key signals; a plain-language verdict; and a disclaimer about data freshness.

## 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": [
      "topic"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "description": "Lookback window in days, default 30"
      },
      "type": {
       "enum": [
        "ALL",
        "RULE",
        "PRORULE",
        "NOTICE"
       ],
       "type": "string",
       "description": "Document type, default ALL"
      },
      "topic": {
       "type": "string",
       "description": "Search term, e.g. trucking or telehealth"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "days": {
         "type": "integer"
        },
        "type": {
         "type": "string"
        },
        "topic": {
         "type": "string"
        }
       }
      },
      "counts": {
       "type": "object",
       "properties": {
        "documents": {
         "type": "integer"
        },
        "finalRules": {
         "type": "integer"
        },
        "proposedRules": {
         "type": "integer"
        },
        "notYetEffective": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "signals": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "documents": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": "string"
         },
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "abstract": {
          "type": "string"
         },
         "agencies": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "typeLabel": {
          "type": "string"
         },
         "effectiveOn"
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-federal-register-monitor-b2a8af26/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
