# Federal Register AI Governance Document Detail Lookup

> Federal Register AI Governance 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 related to AI governance, identified by an entityId like 'fedreg:2026-14090'.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-ai-governance/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-ai-governance-document-detail-lookup-06f6c1b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EoKeIIsM-NF_6k_aUa65Y

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-ai-governance-document-detail-lookup-06f6c1b1
```

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

## When to prefer this

Use this endpoint when you have a specific Federal Register document entityId (format: fedreg:YYYY-NNNNN) and need the full stored detail record for that AI governance document. Prefer this over listing endpoints when you already know the document identifier and need complete record details rather than a summary or digest.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- EntityId not found in stored database returns null or 404
- Omitting the id query parameter may return a list of tracked entities instead of a specific document
- Malformed entityId format (not matching 'fedreg:YYYY-NNNNN' pattern) may return no results
- Payment failure (x402) if USDC payment not properly handled

## How this service works

Full stored detail for a single AI & automated-systems governance action by entity ID (e.g. 'fedreg:2026-14090', 'ftc:…', 'ico:…') — the originating regulator (the Federal Register (rules, agency notices, executive orders), White House actions, FTC AI enforcement, the EU AI Office & Commission, EU legal acts, and NIST standards activity), action type, date, significance, and primary-source link.

## Output

Returns a stored entity object containing detailed information about a single Federal Register document related to AI governance, including regulatory metadata and rule content indexed by the provided 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-ai-governance-document-detail-lookup-06f6c1b1/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)
