regulations_get_docket
regulations_get_docketPull a rulemaking docket from Regulations.gov by docket ID (e.g. "EPA-HQ-OAR-2025-0194") — the docket's metadata (title, agency, RIN, abstract) and the documents filed in it (NPRM, final rule, supporting materials). The docket is the folder holding a rule's whole paper trail; each returned document's objectId feeds regulations_find_comments. A docket often contains hundreds of supporting materials — filter document_types to "Proposed Rule"/"Rule" to find the rule documents themselves. Requires REGULATIONS_GOV_API_KEY (free at https://api.data.gov/signup/); the Federal Register and eCFR tools work without it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1-based). Regulations.gov caps a query at 20 pages (5,000 records); beyond that, narrow with document_types. | |
| per_page | No | Documents per page (5–250, default 25). Regulations.gov requires a minimum page size of 5. | |
| docket_id | Yes | Regulations.gov docket ID (e.g. "EPA-HQ-OAR-2025-0194"). Obtain from a Federal Register document's docketId (regulations_get_document) or an agency rulemaking reference. | |
| document_types | No | Filter the docket's documents to these types. Omit for all. A docket often contains hundreds of "Supporting & Related Material" items — filter to "Proposed Rule"/"Rule" to find the rule documents. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rin | No | Regulation Identifier Number ("Not Assigned" when none), or null. | |
| error | No | Present when the call failed. Absent on success. | |
| shown | No | Documents returned on this page. | |
| title | No | Docket title. | |
| notice | No | Guidance when the docket has no documents. | |
| abstract | No | Docket abstract, or null. | |
| agencyId | No | Agency ID (e.g. "EPA"), or null. | |
| docketId | No | Regulations.gov docket ID. | |
| objectId | No | Docket object ID, or null. | |
| documents | No | Documents filed in the docket (this page). | |
| truncated | No | True when documentCount exceeds the returned set / 5,000 ceiling. | |
| docketType | No | Docket type (e.g. "Rulemaking"), or null. | |
| modifyDate | No | Last-modified date, or null. | |
| documentCount | No | Total documents in the docket (before pagination). |