# Federal Register Workplace Safety Document Lookup

> Federal Register Workplace Safety Document Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored details for a single Federal Register document related to workplace safety, identified by an entityId like 'fedreg:2026-14090'.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-workplace-safety/status
- Price: $0.01/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-workplace-safety-document-lookup-a94efb15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qfAfN6INatC-HxW9nqLc2

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-workplace-safety-document-lookup-a94efb15
```

Example prompt: Can you pull up the stored Federal Register document details for fedreg:2026-14090 — I need to see what that workplace safety regulation contains.

## When to prefer this

Use this endpoint when you have a specific Federal Register document entityId (formatted as 'fedreg:YYYY-NNNNN') and need to retrieve its full stored details. Best for agents that have already discovered a document ID from a list or feed and need to drill into the specifics of a single workplace safety regulation.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- entityId not found in store returns null entity
- Omitting the id query param returns a list of tracked entities instead of a single record
- Payment failure (x402 protocol) if USDC not provided
- Malformed entityId format causes lookup failure

## How this service works

Full stored detail for a single occupational safety & health rule by Federal Register document ID (e.g. 'fedreg:2026-14090') — title, issuing agency, rule type, effective date, and 1-10 compliance-impact score. Covers occupational safety, permissible exposure, workplace, hazard communication, osha.

## Output

Returns a stored entity object containing the details of the specified Federal Register document, including regulatory metadata, document content, and workplace safety rule information indexed by the entityId.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/federal-register-workplace-safety-document-lookup-a94efb15/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)
