Catalog/gov-fedreg-public-inspection

Government

Federal Register documents on public inspection (pre-publication) API

The Federal Register public-inspection feed: documents on display BEFORE official publication — an early-warning signal for incoming rules/notices. Normalized with document number, title, type, filing type, filed/publication dates and agencies, plus by-type and top-agency tallies. Distinct from existing fedreg search/document/agency endpoints. Answers 'What rules are about to publish?', 'Which agencies are filing right now?'.

Price$0.01per request
MethodPOST
Route/v1/gov/fedreg-public-inspection
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache1800s public
govlegalregulationsfederal-registerpublic-inspectioncomplianceus
API URLhttps://x402.hexl.dev/v1/gov/fedreg-public-inspection
Integration docs
Example request
{
  "limit": 5
}
Example response
{
  "totalOnDisplay": 90,
  "returned": 5,
  "byType": {
    "Notice": 5
  },
  "topAgencies": [
    {
      "name": "Nuclear Regulatory Commission",
      "count": 2
    },
    {
      "name": "Securities and Exchange Commission",
      "count": 1
    },
    {
      "name": "National Oceanic and Atmospheric Administration",
      "count": 1
    },
    {
      "name": "Federal Railroad Administration",
      "count": 1
    }
  ],
  "documents": [
    {
      "documentNumber": "2026-11315",
      "title": "Meetings; Sunshine Act",
      "type": "Notice",
      "filingType": "special",
      "filedAt": "2026-06-03T11:15:00.000-04:00",
      "publicationDate": "2026-06-05",
      "agencies": [
        "Nuclear Regulatory Commission"
      ],
      "url": "https://www.federalregister.gov/public-inspection/2026-11315/meetings-sunshine-act"
    },
    {
      "documentNumber": "2026-11279",
      "title": "Self-Regulatory Organizations; Proposed Rule Changes: Cboe Exchange, Inc.",
      "type": "Notice",
      "filingType": "regular",
      "filedAt": "2026-06-04T08:45:00.000-04:00",
      "publicationDate": "2026-06-05",
      "agencies": [
        "Securities and Exchange Commission"
      ],
      "url": "https://www.federalregister.gov/public-inspection/2026-11279/self-regulatory-organizations-proposed-rule-changes-cboe-exchange-inc"
    }
  ],
  "note": "Public-inspection documents are on display BEFORE official publication — an early-warning feed of incoming rules/notices.",
  "disclaimer": "Informational data product aggregated from public government / open-legal APIs. NOT legal advice. Verify against the official primary source before relying on it."
}
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50,
      "default": 20
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}