Catalog/gov-epa-state-enforcement-posture

Government

State-level EPA enforcement posture: violator rate, enforcement intensity and a derived pressure score API

Aggregates a state's active EPA-regulated universe into a compliance posture: counts of significant violators, current/3-year violations, formal and informal enforcement actions, inspections, total penalties and per-program breakdown — plus a derived 0-100 enforcement-pressure score and assessment. Answers 'How tough is environmental enforcement in this state?', 'What share of regulated facilities are significant violators?'.

Price$0.01per request
MethodPOST
Route/v1/gov/epa-state-enforcement-posture
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
govcomplianceepaenforcementstateregulatory
API URLhttps://x402.hexl.dev/v1/gov/epa-state-enforcement-posture
Integration docs
Example request
{
  "state": "DE"
}
Example response
{
  "state": "DE",
  "metrics": {
    "activeFacilities": 2194,
    "significantViolators": 13,
    "facilitiesWithCurrentViolations": 100,
    "facilitiesWithViolations3yr": 239,
    "formalEnforcementActions": 108,
    "informalEnforcementActions": 255,
    "inspections": 443,
    "totalPenalties": 19963608,
    "byProgram": {
      "air": 315,
      "water": 162,
      "waste": 1420,
      "toxicRelease": 51
    }
  },
  "derived": {
    "violatorRatePct": 0.59,
    "enforcementPerViolatorPct": 363,
    "pressureScore": 54,
    "assessment": "moderate enforcement pressure"
  }
}
Input schema
{
  "type": "object",
  "required": [
    "state"
  ],
  "properties": {
    "state": {
      "type": "string",
      "description": "2-letter US state code."
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}