# Mining Incidents MSHA Operator Safety Dossier

> Mining Incidents MSHA Operator Safety Dossier is a paid API for AI agents from miningincidents.org, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a comprehensive safety dossier for a specific MSHA mining operator, including aggregate violation counts, penalty totals, mine list, fatality events, and identity details.

## Facts

- Endpoint: GET https://miningincidents.org/api/x402/operator/0125574
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mining-incidents-msha-operator-safety-dossier-c6c051b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LGttSKXYUpxI_D64lmEwd

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mining-incidents-msha-operator-safety-dossier-c6c051b8
```

Example prompt: Pull up the full MSHA safety dossier for operator 0125574 from Mining Incidents — I want to see their fatality count, total penalties paid, number of mines, and any fatal accident details.

## When to prefer this

Use this endpoint when you need a single operator's complete MSHA compliance and safety profile in one call — covering identity, all mines, aggregate violation and penalty totals, and fatality events. Prefer this over mine-level endpoints when the user is researching the operator as an entity (e.g. for due diligence, ESG screening, or journalism). It is refreshed weekly from MSHA data going back to 1983, making it appropriate for historical compliance research as well as current safety assessment.

## Known failure modes

- Invalid or non-existent operator ID returns empty or error response
- Operator with no recorded incidents returns zero counts but still a valid response
- Rate limiting or payment failure for the $0.02 USDC per call fee
- Stale data between weekly refreshes if a very recent incident occurred
- Operator ID format mismatch (wrong padding or length) causing a not-found response

## How this service works

Mining Incidents is a free, searchable database and research tool covering every reportable US mining incident on file with MSHA. Search by mine, operator, controller, state, year, severity, or any keyword in the investigator&#39;s narrative. 1983 to present, refreshed weekly.

## Output

Returns a JSON object containing the operator's identity (name, ID), aggregate safety statistics (mine count, accident count, citation count, S&S count, fatality count), financial compliance totals (penalty proposed and paid in USD), a list of fatality events with mine name, state, commodity, event date, and classification, plus a link to the human-readable operator page on miningincidents.org.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "links": {
   "human_page": "https://miningincidents.org/operator/1200001"
  },
  "source": "Mining Incidents",
  "endpoint": "operator",
  "operator": {
   "ss_count": 410,
   "mine_count": 8,
   "operator_id": "1200001",
   "operator_name": "Example Operator",
   "accident_count": 40,
   "citation_count": 3200,
   "fatality_count": 2,
   "penalty_paid_total": 1200000,
   "penalty_proposed_total": 1500000
  },
  "fatalities": [
   {
    "id": "3609820",
    "state": "WV",
    "mine_id": "4608791",
    "commodity": "coal",
    "mine_name": "Example Mine",
    "event_date": "2026-04-02",
    "classification": "Fall of roof or back"
   }
  ],
  "schema_version": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mining-incidents-msha-operator-safety-dossier-c6c051b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from miningincidents.org](https://www.zero.xyz/host/miningincidents.org/llms.txt)
