Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.courtrules.app/llms.txt

Use this file to discover all available pages before exploring further.

Enforcement Data

Structured enforcement actions from the FTC, HHS, and 19 state attorneys general. Each event includes the entity, fine amount, violation types, laws cited, remedies, and a link to the official source.

Why teams use enforcement data

In-house legal teams need to know when regulators take action in their industry. An enforcement event against a competitor or vendor can trigger contract reviews, policy updates, and board reporting. This data turns those events from scattered press releases into structured, searchable records that feed directly into legal workflows. Common use cases:
  • Monitor enforcement actions relevant to your industry
  • Scan vendor contracts when a new violation type emerges (using search_terms)
  • Auto-create matters in your legal workspace when high-risk events drop
  • Track enforcement trends by jurisdiction or violation type for compliance reporting

What’s included

Every enforcement event contains:
FieldTypeDescription
titlestringOfficial title of the enforcement action
event_datedateWhen the action was announced
jurisdictionstringEnforcing authority (CA, FTC, NY, TX, HHS, etc.)
event_typestringsettlement, consent_decree, fine, enforcement_action, investigation, etc.
entity_namestringCompany or organization involved
fine_amountnumber or nullMonetary penalty (null for non-monetary actions)
violation_typesstring[]Categories from a fixed taxonomy of 18 types
risk_levelstringcritical, high, medium, or low (based on fine amount and scope)
summarystringPlain-English summary of the action
laws_citedstring[]Statutes referenced (CCPA, FTC Act, COPPA, etc.)
remedy_typesstring[]Required remedies (monetary_penalty, injunction, compliance_program, etc.)
primary_source_urlstringLink to official government press release
document_urlsstring[]Links to complaints, judgments, consent orders
is_multistatebooleanWhether multiple jurisdictions were involved
co_enforcersstring[]Other agencies involved in multistate actions

Example: searching enforcement actions

Call search_enforcement_actions with filters to find relevant events:
{
  "jurisdiction": "CA",
  "violation_type": "opt_out_failure",
  "date_from": "2026-01-01",
  "limit": 10
}
Abbreviated response:
{
  "results": [
    {
      "id": "evt_001",
      "title": "Attorney General Bonta Announces $2.75M CCPA Settlement with Disney",
      "event_date": "2026-02-11",
      "jurisdiction": "CA",
      "event_type": "settlement",
      "entity_name": "The Walt Disney Company",
      "fine_amount": 2750000,
      "violation_types": ["opt_out_failure"],
      "risk_level": "high",
      "summary": "Disney's opt-out processes failed to stop data sharing across devices. $2.75M penalty.",
      "primary_source_url": "https://oag.ca.gov/news/press-releases/..."
    }
  ],
  "total": 1
}
See MCP: Enforcement Data for the full search_enforcement_actions tool reference, or API Reference for direct REST access.

Jurisdictions covered

21 federal and state authorities:
LevelJurisdictions
FederalFTC, HHS (HIPAA enforcement)
StateCA (OAG + CPPA), TX, NY, CT, CO, OR, NJ, VA, MN, GA, OH, IN, FL, IL, PA, MA, WA
CityNYC (DCWP)

Violation types

18 categories organized by data subject:
CategoryTypes
Consumer dataopt_out_failure, notice_failure, consent_failure, dark_patterns, data_sharing_unauthorized, data_broker_noncompliance
Sensitive datachildren_data, student_data, health_data, employee_data, biometric_data, geolocation_data
Securitydata_breach, security_failure, breach_notification_delay
Otherrecord_retention, ai_automated_decisions, surveillance_pricing

Risk levels

LevelCriteria
CriticalFine exceeds $10M or involves industry-wide injunction
HighFine exceeds $1M
MediumFine between 100Kand100K and 1M
LowFine under $100K or no monetary penalty

Access methods

Enforcement data is available through:
  1. MCP Server: Use search_enforcement_actions, get_enforcement_details, and get_enforcement_stats tools. See MCP: Enforcement Data.
  2. Web Console: Browse and filter events at courtrules.app/enforcement.

Data quality

  • Every event sourced from official government press releases
  • Entity names normalized for consistent search and deduplication
  • No duplicate events across overlapping sources
  • Source quotes preserved for traceability
  • Data refreshed when government pages are updated

Data freshness

New enforcement events appear within 24 hours of the official government announcement. Source-specific timing:
SourceCheck frequencyTypical latency
FTCRSS feedUnder 4 hours
State AGs (19)DailySame day or next day
HHS OCRDailySame day or next day
To get only new events since your last check, use date_from with search_enforcement_actions:
{
  "date_from": "2026-03-20",
  "limit": 50
}
Webhook notifications for new events are on the roadmap. For now, poll with date_from filters.