Tools / Regulatory Actions
Regulatory Actions icon

Regulatory Actions

SEC, CFPB, FDIC & Federal Register

Search enforcement actions and regulatory filings from US financial regulators. Covers SEC litigation releases, CFPB consumer finance enforcement, FDIC bank failures, and Federal Register rules and proposed rules by any agency.

4 skillsv0.01
SEC Enforcement

Search SEC enforcement actions including litigation releases and accounting/auditing enforcement releases via EDGAR full-text search. Filter by keyword and date range.

Returns: SEC litigation releases with release number, date, respondent names, and links to full release details
Parameters
querystringKeyword search (e.g. company name, person, topic). Defaults to broad enforcement search if omitted.
daysnumberNumber of days to look back (default: 90)
Example
Search recent SEC enforcement actions
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "regulatory-actions",
  "skill": "sec_enforcement",
  "input": {}
}' \
  https://api.toolrouter.com/v1/tools/call
CFPB Enforcement

Browse enforcement actions from the Consumer Financial Protection Bureau. Search by keyword to find actions against specific companies or involving specific financial products.

Returns: CFPB enforcement actions with case name, filing/settlement dates, respondents, financial products involved, and types of relief
Parameters
querystringKeyword search to filter actions (e.g. company name, product type like "mortgage" or "credit card")
limitnumberMaximum number of results to return (default: 20)
Example
Get recent CFPB enforcement actions
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "regulatory-actions",
  "skill": "cfpb_enforcement",
  "input": {}
}' \
  https://api.toolrouter.com/v1/tools/call
FDIC Bank Failures

Look up FDIC bank failures including bank name, location, acquiring institution, and closing date. Filter by year and state to analyze banking sector stability.

Returns: FDIC bank failures with bank name, location, certificate number, acquiring institution, closing date, and insurance fund
Parameters
yearnumberFilter by closing year (e.g. 2023)
statestringFilter by US state abbreviation (e.g. "CA", "NY", "TX")
limitnumberMaximum number of results to return (default: 50)
Example
Get all recent FDIC bank failures
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "regulatory-actions",
  "skill": "fdic_failures",
  "input": {}
}' \
  https://api.toolrouter.com/v1/tools/call
Federal Register

Search the Federal Register for rules, proposed rules, and notices from federal agencies. Filter by keyword, document type, and agency to track regulatory activity.

Returns: Federal Register documents with title, abstract, publication date, agency names, type, CFR references, docket IDs, and links to full text
Parameters
querystringKeyword search (e.g. "cryptocurrency", "emissions", "banking")
typestringDocument type filter (default: "all")
agencystringFilter by agency slug (e.g. "securities-and-exchange-commission", "consumer-financial-protection-bureau")
limitnumberMaximum number of results to return (default: 20, max: 20)
Example
Get the latest Federal Register documents
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "regulatory-actions",
  "skill": "federal_register",
  "input": {}
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.012026-03-22
  • Initial release with 4 skills: sec_enforcement, cfpb_enforcement, fdic_failures, federal_register

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"regulatory-actions","skill":"sec_enforcement","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Frequently Asked Questions

Can I search SEC enforcement by company or topic?

Yes. `sec_enforcement` searches SEC litigation releases and accounting or auditing enforcement releases by keyword and date range.

Can I check CFPB cases or FDIC bank failures?

`cfpb_enforcement` covers consumer finance actions, and `fdic_failures` lists bank failures with year and state filters for quick banking-sector checks.

Can I follow new rules and proposed rules from federal agencies?

`federal_register` searches rules, proposed rules, notices, and presidential documents by keyword, document type, or agency slug.

How do I narrow the results when I only care about one regulator?

Use the regulator-specific filters: `federal_register` for agency and document type, `cfpb_enforcement` for a keyword plus limit, and `fdic_failures` for year or state.