regulations_list_open_comments
regulations_list_open_commentsList rules currently open for public comment, filterable by agency slug and topic, sorted by closing date (soonest first). "What can I still weigh in on?" Runs on the Federal Register's open-comment window and is fully functional without a key. When REGULATIONS_GOV_API_KEY is configured, each row is enriched with the comment count from the Federal Register document's embedded Regulations.gov info (no extra rate-limited call). Open one row with regulations_get_document for the full proposal, or pull the comments with regulations_find_comments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1–50). The FR caps total_pages at 50; with per_page=100 this covers up to 5,000 open rules. | |
| query | No | Full-text filter across open rules. Omit to list all rules currently open for comment. | |
| agencies | No | Filter to one or more agencies by Federal Register agency slug (e.g. "environmental-protection-agency"). | |
| per_page | No | Results per page (2–100, default 20). The Federal Register API treats exactly 1 as its default page size instead of returning one result. | |
| closing_before | No | Only rules whose comment period closes on or before this date, ISO 8601 (YYYY-MM-DD). Use to find deadlines you need to act on soon. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asOf | No | The "today" the open-window filter used (ISO 8601). | |
| error | No | Present when the call failed. Absent on success. | |
| keyed | No | Whether comment counts were enriched (REGULATIONS_GOV_API_KEY present). | |
| shown | No | Results returned on this page. | |
| notice | No | Guidance when nothing matched, or that comment counts are unavailable without a key. | |
| results | No | Rules open for comment (this page), closing soonest first. | |
| truncated | No | True when matches exceed the FR 5,000-record navigation ceiling. | |
| totalCount | No | Total rules open for comment matching the filters. |