# US Legislative Rulemaking Search

> US Legislative Rulemaking Search is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Search US federal proposed rules and rulemaking dockets by docket ID, keyword, or agency, returning documents, comment periods, public-comment counts, and Federal Register links.

## Facts

- Endpoint: GET https://payai.agentstools.dev/legislative/rulemaking
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-legislative-rulemaking-search-eba29281
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Oc2PX-J0otBudvQNFJi04

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-legislative-rulemaking-search-eba29281
```

Example prompt: Can you find proposed rules from the EPA about air quality standards — I want to see the latest rulemaking documents, how many public comments they've received, and links to the Federal Register entries?

## When to prefer this

Use this endpoint when you need to look up or search US federal rulemaking activity, including proposed rules, final rules, and notices from specific agencies. It is ideal for compliance research, policy monitoring, public comment tracking, or any task requiring structured access to Regulations.gov and Federal Register data without needing to scrape those sites directly.

## Known failure modes

- Invalid or non-existent docket ID returns empty results or an error
- Unknown agency ID filter returns no results
- Overly broad keyword returns up to the limit but may miss relevant documents
- API rate limiting or upstream Regulations.gov unavailability may cause timeouts
- No documents matching the specified documentType enum value returns an empty list

## 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, each including the docket ID, document title, document type (Proposed Rule, Rule, or Notice), agency, comment period open/close dates, public comment count, and a link to the Federal Register entry.

## 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-legislative-rulemaking-search-eba29281/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
