# Workplace Safety Compliance Brief (LLM Digest)

> Workplace Safety Compliance Brief (LLM Digest) is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated plain-language digest of the most important occupational safety & health regulatory changes in a given time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-workplace-safety/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/workplace-safety-compliance-brief-llm-digest-b86abdcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E0bIq4U2UP10KoGIamB5v

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 workplace-safety-compliance-brief-llm-digest-b86abdcb
```

Example prompt: Give me a brief on the occupational safety and health rules that have come out since January 1, 2025 — I need to know which ones actually matter and any key deadlines.

## When to prefer this

Use this endpoint when you need a concise, human-readable executive summary of OSHA and occupational safety regulatory changes rather than raw rule data. Ideal for compliance teams, HR professionals, or AI agents that need to quickly surface actionable safety deadlines without parsing dense Federal Register entries. Prefer this over the raw rules endpoint when the consumer needs narrative explanation rather than structured rule metadata.

## Known failure modes

- No changes found in the requested window returns an empty or minimal brief with basedOnChanges: 0
- Invalid since timestamp format returns a 400 validation error
- LLM generation failure may fall back to template-based generation (generatedBy: template)
- Payment not provided or insufficient returns a 402 Payment Required error
- Service unavailable returns 5xx error

## How this service works

LLM-written compliance digest of the occupational safety & health rules in the window that actually matter (occupational safety, permissible exposure, workplace, hazard communication, osha) — issuing agency named, deadlines called out.

## Output

A structured object containing a plain-language LLM-written brief summarizing the handful of most significant occupational safety & health regulatory changes in the requested window, the number of Federal Register changes it was based on, and whether the brief was generated by LLM or a template.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/workplace-safety-compliance-brief-llm-digest-b86abdcb/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)
