Microproduct Data GuideIntermediate

Regulations.gov Dockets

Federal rulemaking dockets, documents, and public comments for building comment-period monitors and agency docket trackers.

Report a Problem

At a Glance

Difficulty
Intermediate — some data preparation helps
Size
Small · ≤0.2 GB
Formats
JSON
Access
API
API Key
Required
Provider
U.S. General Services Administration
Updates
Daily
Last Verified
Aug 18, 2026
Source Type
Government Source
  • Python Syntax Checked

From Source to Product Signal

Test a Product Idea in Four Steps

The regulations.gov v4 API searches dockets and documents with an api.data.gov key. Start with one agency and posted documents. Comment text is public input, not agency policy, and bulk comment jobs have separate rate limits.

1

Check the Setup

  • Python 3.10 or newer
  • A notebook environment such as Jupyter or Google Colab
  • A free api.data.gov key saved in the DATA_GOV_API_KEY environment variable
2

Access the Data

  1. 1.Register for a free api.data.gov key and save it in DATA_GOV_API_KEY.
  2. 2.Read the v4 documents search parameters.
  3. 3.Request a bounded page of EPA proposed rules.
Open Official Source
3

Run the Python Example

Install the packages, then run the notebook cell.

python -m pip install pandas requests

import os
import pandas as pd
import requests

response = requests.get(
    "https://api.regulations.gov/v4/documents",
    params={
        "api_key": os.environ["DATA_GOV_API_KEY"],
        "filter[agencyId]": "EPA",
        "filter[documentType]": "Proposed Rule",
        "page[size]": 20,
        "sort": "-postedDate",
    },
    timeout=30,
)
response.raise_for_status()
documents = pd.json_normalize(response.json()["data"])
documents["retrieved_at_utc"] = pd.Timestamp.now(tz="UTC")
print(documents.head())
4

Test a Useful Signal

Track Recent EPA Proposed Rules

Test whether v4 document search can power a bounded comment-period monitor.

  1. 01Keep document id, title, posted date, and comment-end date from the page.
  2. 02Flag documents whose comment period is still open.
  3. 03Explain that comments are public submissions and that the API is not the signed final rule.

Dataset Details

U.S. General Services Administration is a government source. Last verified 2026-08-18. Temporal coverage: federal dockets and comments available through regulations.gov.

Geography

Formats

Provider

U.S. General Services Administration

Data Terms

Regulations.gov API terms of service

Send Feedback