# Federal Register Nuclear Document Detail Lookup

> Federal Register Nuclear Document Detail 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 detail for a single Federal Register document, optionally listing all tracked nuclear-related regulatory entries.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-nuclear/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-nuclear-document-detail-lookup-6395acc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uJ2MMws7D-uGrhGoGBHVS

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-nuclear-document-detail-lookup-6395acc2
```

Example prompt: Can you pull up the full details for Federal Register nuclear document fedreg:2026-14090 from the oracles tracker?

## When to prefer this

Use this endpoint when you need the full stored details of a specific nuclear-related Federal Register document by its entityId (e.g. 'fedreg:2026-14090'), or when you want to list all nuclear regulatory documents currently tracked by this oracle. Prefer this over general Federal Register APIs when you need pre-processed, oracle-cached data with a per-call micropayment model.

## Known failure modes

- Unknown or untracked entityId returns empty or 404 response
- Malformed entityId format (not matching 'fedreg:XXXX-XXXXX') may return an error
- Document not yet ingested into the oracle store returns no result
- Network or upstream service outage on Railway deployment

## How this service works

Full stored detail for a single nuclear power & materials safety 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 nuclear, reactor, radioactive, radiological, license amendment.

## Output

Returns a JSON object containing stored detail for the specified Federal Register nuclear-related document entity, including regulatory metadata such as document type, date, agency, and full content fields. If no ID is provided, returns a list of all tracked nuclear Federal Register entity IDs.

## 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-nuclear-document-detail-lookup-6395acc2/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)
