# Federal Register Cybersecurity Document Lookup

> Federal Register Cybersecurity 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 detail for a single Federal Register cybersecurity-related document by its entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-cybersecurity/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-cybersecurity-document-lookup-63f5b0f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n5_pzStiZ9JJ6BqfX9hyy

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-cybersecurity-document-lookup-63f5b0f0
```

Example prompt: Pull up the full details for Federal Register cybersecurity document fedreg:2026-14090 — I need everything stored about that specific entry.

## When to prefer this

Use this endpoint when you have a specific Federal Register cybersecurity document entityId (e.g. fedreg:2026-14090) and need to retrieve its full stored details. Prefer this over the digest or list endpoints when you already know the document ID and need complete structured data for a single record rather than a summary or batch of results.

## Known failure modes

- Entity ID not found — document not tracked or incorrect ID format
- Missing required id parameter when a specific document is needed
- Invalid entityId format — must follow 'fedreg:YYYY-NNNNN' pattern
- Payment failure — x402 payment required before response is returned
- Service unavailable or upstream Federal Register data not refreshed

## How this service works

Full stored detail for a single cybersecurity requirements 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 cybersecurity, incident report, critical infrastructure, information security, cyber incident.

## Output

Returns a JSON object containing the stored detail for the requested Federal Register cybersecurity document, including entity metadata and full document details. If no ID is provided, lists all tracked cybersecurity entities.

## 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-cybersecurity-document-lookup-63f5b0f0/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)
