# Federal Register Document Detail Lookup

> Federal Register 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-14).

Retrieves stored detail for a single Federal Register document by its entityId (e.g. 'fedreg:2026-14090'), or lists all tracked Federal Register entities.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-securities/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/federal-register-document-detail-lookup-b0846ad6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D2IlDvd6Vjd1zIQh0Jjd4

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-document-detail-lookup-b0846ad6
```

Example prompt: Pull up the stored Federal Register document details for fedreg:2026-14090 — I want to see what's in that regulatory entry.

## When to prefer this

Use this endpoint when you need to retrieve detailed stored data for a specific Federal Register document by its entityId. Prefer this over live Federal Register scraping when you want pre-indexed, structured data accessible via a simple lookup. Use list mode (omit id) to discover which Federal Register documents are currently tracked by this oracle service.

## Known failure modes

- Invalid or unknown entityId returns empty or not-found response
- Malformed entityId format (not fedreg:YYYY-NNNNN) may return no results
- Payment of $0.01 USDC required via x402 — missing payment returns 402 error
- Network or server errors from Railway hosting returning 5xx
- Omitting the id query param returns list mode rather than a single document detail

## How this service works

Full stored detail for a single securities & public-company disclosure 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 securities, disclosure, investment adviser, broker-dealer, exchange act.

## Output

Returns a JSON object containing the stored entity data for the specified Federal Register document, including regulatory metadata and document details. If no ID is provided, returns a list of all tracked Federal Register 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-document-detail-lookup-b0846ad6/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)
