# US Federal Rulemaking & Proposed Rules Search

> US Federal Rulemaking & Proposed Rules Search is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Search and retrieve US federal proposed rules, rulemaking dockets, and related documents from Regulations.gov and the Federal Register by docket ID, keyword, or agency.

## Facts

- Endpoint: GET https://api.agentstools.dev/legislative/rulemaking
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-federal-rulemaking-proposed-rules-search-719c271c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JgIJ7uoO_Q2CutOMP4bV-

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 us-federal-rulemaking-proposed-rules-search-719c271c
```

Example prompt: Find me the latest proposed rules from the EPA related to air quality standards — pull up to 10 documents including their comment periods and public comment counts, and filter to just Proposed Rule document types.

## When to prefer this

Use this endpoint when you need structured, normalized access to US federal proposed rules and rulemaking dockets without scraping Regulations.gov or the Federal Register manually. Ideal when filtering by agency, searching by keyword, or looking up a specific docket ID to get comment period and public participation data in a single call.

## Known failure modes

- Invalid docketId format returns no results or an error
- Unknown agency ID returns empty results
- Keyword with no matches returns an empty document list
- Limit out of range (>25 or <1) causes a validation error
- Network or upstream Regulations.gov API downtime returns a service error

## How this service works

Find US proposed rules and rulemaking dockets by docket id, keyword or agency: documents, comment period, public-comment count and Federal Register links. Source: Regulations.gov + Federal Register, public-domain.

## Output

Returns a list of rulemaking documents matching the query, including docket metadata, document type, comment period dates, public comment counts, and links to the Federal Register entries — normalized from Regulations.gov and Federal Register sources.

## 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",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "Alias for keyword"
      },
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Max documents to return, default 10"
      },
      "agency": {
       "type": "string",
       "description": "Agency id filter, e.g. EPA"
      },
      "keyword": {
       "type": "string",
       "description": "Keyword to search rulemaking docs"
      },
      "docketId": {
       "type": "string",
       "description": "Regulations.gov docket id, e.g. EPA-HQ-OAR-2021-0317"
      },
      "documentType": {
       "enum": [
        "Proposed Rule",
        "Rule",
        "Notice"
       ],
       "type": "string",
       "description": "Document type to match"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-federal-rulemaking-proposed-rules-search-719c271c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
