VOOZH about

URL: https://apify.com/crawlerbros/federal-register-scraper

โ‡ฑ US Federal Register Scraper ยท Apify


Pricing

from $1.00 / 1,000 results

Go to Apify Store

US Federal Register Scraper

Scrape US Federal Register documents, daily-published rules, proposed rules, notices, executive orders, and presidential documents. Search by term, filter by date / agency / type, fetch by document number. HTTP-only via the public federalregister.gov API.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Share

Scrape the US Federal Register โ€” the official daily journal of US federal regulatory documents (rules, proposed rules, notices, executive orders, presidential documents). Search by term, filter by agency / date / type, fetch by document number. Pulls full bibliographic info, CFR cross-references, comment URLs, and optionally the full body text. HTTP-only via the public federalregister.gov/api/v1 API. No auth, no proxy.

What this actor does

  • Two modes: search (full-text + filters) and byDocumentNumbers (lookup specific docs)
  • Filters: publication date range, agency, document type (RULE / PRORULE / NOTICE / PRESDOCU), presidential document subtype
  • Sorts: newest, oldest, relevance
  • Optional full text โ€” fetch and strip the body HTML to plain text
  • Empty fields are omitted โ€” no nulls in output

Output per document

  • documentNumber, title, abstract, excerpts (search-mode highlight)
  • type (Rule/Proposed Rule/Notice/Presidential Document), typeCode (RULE/PRORULE/NOTICE/PRESDOCU)
  • publicationDate, effectiveDate, commentsCloseOn, signingDate
  • citation (e.g. 89 FR 12345)
  • startPage, endPage
  • agencies[] โ€” readable agency names
  • cfrReferences[] โ€” [{title, part}] references into the Code of Federal Regulations
  • docketIds[] โ€” Regulations.gov docket IDs
  • executiveOrderNumber (when applicable)
  • presidentialDocumentNumber (when applicable)
  • action, dates, explanation โ€” preamble fields (detail mode)
  • htmlUrl, pdfUrl, publicInspectionPdfUrl, fullTextXmlUrl, bodyHtmlUrl, commentUrl
  • bodyText โ€” when fetchFullText=true
  • recordType: "document", scrapedAt

Input

FieldTypeDefaultDescription
modestringsearchsearch / byDocumentNumbers
searchTermstringclimateFree-text query (mode=search)
documentNumbersarrayโ€“Federal Register document numbers (mode=byDocumentNumbers)
documentTypesarray[]RULE/PRORULE/NOTICE/PRESDOCU
agenciesarray[]Agency slugs (e.g. environmental-protection-agency)
publicationDateGtestringโ€“YYYY-MM-DD lower bound
publicationDateLtestringโ€“YYYY-MM-DD upper bound
presidentialDocumentTypesarray[]executive_order/proclamation/etc.
sortBystringnewestnewest/oldest/relevance
fetchFullTextboolfalseFetch + strip body HTML
maxItemsint50Hard cap (1โ€“5000)

Example: all final rules from EPA in 2024

{
"mode":"search",
"searchTerm":"",
"agencies":["environmental-protection-agency"],
"documentTypes":["RULE"],
"publicationDateGte":"2024-01-01",
"publicationDateLte":"2024-12-31",
"maxItems":200
}

Example: all executive orders since 2024

{
"mode":"search",
"documentTypes":["PRESDOCU"],
"presidentialDocumentTypes":["executive_order"],
"publicationDateGte":"2024-01-01",
"sortBy":"newest"
}

Example: lookup specific documents

{
"mode":"byDocumentNumbers",
"documentNumbers":["2024-08901","2024-12345"]
}

Example: search "climate" with body text included

{
"mode":"search",
"searchTerm":"climate disclosure",
"fetchFullText":true,
"maxItems":25
}

Use cases

  • Regulatory monitoring โ€” track every new rule from agencies you care about
  • Compliance โ€” surface comment-period deadlines and effective dates
  • Policy analysis โ€” bulk-export rules / EOs by topic for analysis
  • Legal research โ€” find every rule that cites a specific CFR title and part
  • Lobbying / GR โ€” aggregate all proposed rules in your industry vertical
  • Journalism โ€” daily digest of federal regulatory output

FAQ

Do I need a federalregister.gov account? No. The Federal Register API is fully public and requires no authentication.

Is there a rate limit? The API is generous; the actor inserts small delays to stay polite (~3 req/s).

What's the difference between RULE and PRORULE? RULE = final rule (already in effect or about to be). PRORULE = proposed rule (open for public comment).

What's a "presidential document"? Executive Orders, Proclamations, Memoranda, Notices, and other presidential issuances. Filter further with presidentialDocumentTypes.

How do I find an agency slug? Browse federalregister.gov/agencies. The slug is the URL segment (e.g. environmental-protection-agency).

What's cfrReferences? Pointers from this document into the Code of Federal Regulations. Each reference has a title (e.g. 40 for Environment) and a part (e.g. 52).

Why does bodyText cost extra? It requires a second HTTP request per document to fetch the body HTML, then strips it to plain text. For 100 documents that's 100 extra requests. Default is off; opt in via fetchFullText: true.

How fresh is the data? Same-day. The Federal Register is published every federal business day at 8:45 AM ET; the API reflects new documents within minutes.

Can I search the body of documents? Yes โ€” the searchTerm parameter searches title, abstract, AND full body text by default.

You might also like

Federal Register Rules & Regulations Search

ryanclinton/federal-register-search

Search the US Federal Register for rules, proposed rules, notices, executive orders, and other presidential documents published by every federal agency.

Federal Register Scraper | Daily US Rulemaking Notices

parseforge/federalregister-scraper

Extract structured data from the US Federal Register: rules, proposed rules, notices, and presidential documents. Filter by agency, document type, and publication date. Ideal for compliance teams, policy analysts, and legal researchers tracking US regulations.

Federal Register Monitor

george.the.developer/federal-register-monitor

Monitor the Federal Register for rules, proposed rules, notices, and presidential documents with normalized rows and full document detail.

Federal Register Documents Scraper

compute-edge/federal-register-scraper

Extract U.S. Federal Register documents via the public API. Filter by query, document types (rules, notices, proposed rules), publication date, and agencies. Includes full document details, citations, and regulatory information.

Federal Register Crawler - US Regulatory Documents

jungle_synthesizer/federal-register-crawler

Crawl 800K+ regulatory documents from the Federal Register API. Extract rules, proposed rules, executive orders, and notices with titles, abstracts, agency info, CFR references, RIN numbers, and comment deadlines. Filter by agency, document type, date range, and significance.

๐Ÿ‘ User avatar

BowTiedRaccoon

2

Federal Register Scraper โ€” Notices, Rules & Regulations

parseforge/federal-register-regulatory-notices-rules-scraper

Collect U.S. Federal Register documents with 27+ fields. Filter notices, rules, proposed rules, and presidential documents by agency, keyword, and date range. Get citations, CFR references, comment deadlines, docket IDs, and PDF/HTML links.