# Federal Register Mine Safety & Health Regulatory Changes Feed

> Federal Register Mine Safety & Health Regulatory Changes Feed is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns Federal Register final and proposed rules for mine safety and health since a given timestamp, each scored 1-10 for compliance impact, with effective dates and primary-source links.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-mining-safety/changes
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/federal-register-mine-safety-health-regulatory-changes-feed-2348655a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_69cEHSqOMb_tQ3jSCIprB

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 federal-register-mine-safety-health-regulatory-changes-feed-2348655a
```

Example prompt: Pull all Federal Register mine safety and health regulatory changes since 2025-01-01T00:00:00Z, and only show me the ones scored at least 7 out of 10 for compliance impact — up to 50 results.

## When to prefer this

Choose this endpoint when you need structured, scored, and timestamped Federal Register regulatory changes specifically in the mine safety and health domain. It is ideal for compliance monitoring workflows, automated alerting pipelines, or audit preparation where you need primary-source links and impact scoring. Prefer this over general Federal Register search when you want pre-filtered, domain-specific results with built-in significance scoring rather than raw document dumps.

## Known failure modes

- Invalid 'since' timestamp format returns a 400 error
- 'min_significance' value outside 1-10 range returns a 400 validation error
- 'limit' value outside 1-500 range returns a 400 validation error
- No matching changes in the requested window returns an empty changes array with count 0
- Payment not provided or insufficient returns a 402 Payment Required response
- Service unavailable or Federal Register source unreachable returns a 5xx error

## How this service works

Federal Register final & proposed rules affecting mine safety & health (Mine Safety And Health Administration) since a timestamp — covering mine, mining, respirable, miner, coal — each scored 1-10 for compliance impact, with effective dates and primary-source links.

## Output

A JSON array of regulatory change objects, each containing a title, change type (final or proposed rule), a plain-language summary, a compliance significance score from 1 to 10, an effective date (if available), a primary-source Federal Register URL for verification, a detection timestamp, and a unique entityId. Also includes a total count and source label.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Only changes detected after this ISO-8601 instant"
      },
      "min_significance": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Keep only changes scored at least this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "changes": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "detail": {
          "type": "object"
         },
         "summary": {
          "type": "string"
         },
         "entityId": {
          "type": "string"
         },
         "sourceUrl": {
          "type": [
           "string",
           "null"
          ],
          "description": "Primary-source link for verification"
         },
         "detectedAt": {
          "type": "string",
          "format": "date-time"
         },
         "significance": {
          "type": "integer",
          "maximum": 10,
          "minimum": 1
         },
         "effectiveDate": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/federal-register-mine-safety-health-regulatory-changes-feed-2348655a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
