AnswerPool

Comment Deadlines API: Proposed federal rules whose comment window closes within N days — Federal Register

Proposed federal rules whose comment window closes within N days, sorted soonest first with exact day-counts — the actionable comment queue, optionally filtered to one agency or topic. Replaces scanning months of proposed rules and computing dates.

$0.02 per call — pay with prepaid card credits (Authorization: Bearer ck_live_…, packs from $1) or with USDC over x402: call it, get 402 with the price, retry signed. Failed calls are never charged.

How do you call it?

GET /v1/regs/comment-deadlines — product id reg_comment_deadlines. Over MCP, call answerpool_get with product_id=reg_comment_deadlines.

curl "https://answerpool.io/v1/regs/comment-deadlines?within_days=14"

# with a prepaid credit key
curl -H "Authorization: Bearer ck_live_..." "https://answerpool.io/v1/regs/comment-deadlines?within_days=14"

Live call: https://answerpool.io/v1/regs/comment-deadlines?within_days=14 · JSON sample: /v1/samples/reg_comment_deadlines

What does the answer look like?

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

as_of2026-09-02T14:00:00Z
total_matching1
count1
refresh_after2026-09-18T00:00:00.000Z

documents

document_numbertitletypeactionagenciespublication_dateeffective_oncomments_close_onsignificantabstractdocket_idsregulation_id_numbers
2026-12342Proposed Amendments to Rule 10b5-1Proposed RuleProposed rule.Securities and Exchange Commission2026-08-302026-09-09Proposes amendments to insider trading plan conditions.SEC-2026-0013235-AN00
The same sample as raw JSON
{
 "as_of": "2026-09-02T14:00:00Z",
 "total_matching": 1,
 "count": 1,
 "documents": [
  {
   "document_number": "2026-12342",
   "title": "Proposed Amendments to Rule 10b5-1",
   "type": "Proposed Rule",
   "action": "Proposed rule.",
   "agencies": [
    "Securities and Exchange Commission"
   ],
   "publication_date": "2026-08-30",
   "effective_on": null,
   "comments_close_on": "2026-09-09",
   "significant": null,
   "abstract": "Proposes amendments to insider trading plan conditions.",
   "docket_ids": [
    "SEC-2026-001"
   ],
   "regulation_id_numbers": [
    "3235-AN00"
   ],
   "cfr_references": [
    "17 CFR 240"
   ],
   "topics": [
    "Securities"
   ],
   "url": "https://www.federalregister.gov/d/2026-12342",
   "flags": [
    "comments_close_soon"
   ],
   "days_to_comment_close": 7,
   "days_to_effective": null
  }
 ],
 "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 act on comment windows — drafting, alerting, or prioritizing by urgency.

What you skip building

When should you not use it?

Closed dockets or final rules — use the docket tracker.

Where else can you find this?