# ForgeMesh Rulemaking Alert Feed

> ForgeMesh Rulemaking Alert Feed is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Queries the Federal Register for the most recent regulatory documents matching an industry keyword, returning document type, stage, issuing agency, and full-text URL

## Facts

- Endpoint: POST https://x402.forgemesh.io/rulemaking-alerts
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-rulemaking-alert-feed-9e081fac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ym-eY8oyIYgcavit5wihN

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 forgemesh-rulemaking-alert-feed-9e081fac -d '<json body>'
```

Example prompt: Search the Federal Register for any recent rulemaking documents mentioning 'stablecoin' and tell me what stage each is at, which agency issued it, and whether any are open for public comment right now.

## When to prefer this

Use this endpoint when an agent needs to track or react to US federal regulatory activity on a specific topic — particularly for compliance monitoring, public comment participation, or policy research. It is purpose-built for regulatory document search against the Federal Register, making it more targeted than a general web search for regulatory news. Prefer it over manual web scraping when structured metadata (agency, stage, date, URL) is needed alongside document discovery.

## Known failure modes

- Empty query returns newest documents rather than targeted results — may be too broad
- Obscure or misspelled search terms return zero results
- Federal Register data may have a publication lag of 1-2 days from official issuance
- Very broad search terms may return thousands of results with limited pagination control
- Payment failure (402) if USDC balance is insufficient

## How this service works

Rulemaking alert feed for agents: query any industry term and get the most recent official regulatory documents touching it — what stage each is at, which agency issued it, and where to read the full text. Poll it to catch proposed rules during their public-comment window.

## Output

A JSON object with a count of total matching documents and an array of results, each containing: document type (e.g. Notice, Proposed Rule), title, abstract snippet, list of issuing agencies, URL to the full Federal Register entry, and publication date. Attribution to the Federal Register is included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "search term, e.g. 'stablecoin' — empty returns newest documents"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "count": 1546,
   "results": [
    {
     "type": "Notice",
     "title": "Artificial Intelligence Risk Management Guidance",
     "abstract": "Request for comment on updated AI risk management guidance...",
     "agencies": [
      {
       "name": "Commerce Department"
      }
     ],
     "html_url": "https://www.federalregister.gov/documents/2026/08/18/example",
     "publication_date": "2026-08-18"
    }
   ]
  },
  "attribution": "Federal Register (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-rulemaking-alert-feed-9e081fac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
