AnswerPool

Regulatory Activity API: Per-agency Federal Register volume with prior-window change

Per-agency Federal Register volume with prior-window change and doc-type totals — which regulators are accelerating, in one call instead of a pagination crawl. Free, no key.

Free — no key, no signup, rate-limited to 60 calls per minute per client.

How do you call it?

GET /v1/regs/activity — product id reg_activity. Over MCP, call answerpool_get with product_id=reg_activity.

curl "https://answerpool.io/v1/regs/activity?days=90"

Live call: https://answerpool.io/v1/regs/activity?days=90 · JSON sample: /v1/samples/reg_activity

What does the answer look like?

A representative response, the same static sample served at /v1/samples/reg_activity.

as_of2026-09-03T02:00:00Z
window_days90
total_documents6949
by_type.NOTICE5492
by_type.RULE926
by_type.PRORULE465
by_type.PRESDOCU66
disclaimerRegulatory information from the Federal Register (public domain); not legal advice.
refresh_after2026-09-18T00:00:00.000Z

agencies

slugnamedocumentsprior_windowchange_pct
commerce-departmentCommerce Department76569010.9
The same sample as raw JSON
{
 "as_of": "2026-09-03T02:00:00Z",
 "window_days": 90,
 "total_documents": 6949,
 "by_type": {
  "NOTICE": 5492,
  "RULE": 926,
  "PRORULE": 465,
  "PRESDOCU": 66
 },
 "agencies": [
  {
   "slug": "commerce-department",
   "name": "Commerce Department",
   "documents": 765,
   "prior_window": 690,
   "change_pct": 10.9
  }
 ],
 "disclaimer": "Regulatory information from the Federal Register (public domain); not legal advice.",
 "refresh_after": "2026-09-18T00:00:00.000Z"
}

How fresh is it, and where does the data come from?

The fastest source behind this answer can change daily, so every response carries a refresh_after timestamp — right now it would be 2026-09-18T00:00:00.000Z. Schedule the next call on that value rather than on a guess.

Method version 0.1.0 · serving cache 1 day · every response carries a result_id you can resolve at /v1/provenance.

When should you use it?

You want the agency-level activity map or trend, not the documents.

What you skip building

When should you not use it?

The documents themselves — /v1/regs/rules or /v1/regs/agency.

Where else can you find this?