# Federal Register Document Detail Lookup (Reg-Crypto)

> Federal Register Document Detail Lookup (Reg-Crypto) 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 by its entityId (e.g. 'fedreg:2026-14090'), focused on crypto/banking regulatory rules.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-crypto/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-document-detail-lookup-reg-crypto-19e4d78e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iA3iiYbkfUui3ub6BTmKR

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-reg-crypto-19e4d78e
```

Example prompt: Can you pull up the full details for Federal Register document fedreg:2026-14090? I need to review the stored regulatory record for that entry.

## When to prefer this

Use this endpoint when you already know the specific Federal Register entityId (e.g. 'fedreg:2026-14090') and need the full stored detail record for that document. Prefer this over list endpoints when you have a precise document reference and need its complete metadata. Best for agents that have already discovered relevant document IDs from a sibling list/search endpoint and now need the full record.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- Entity not tracked or not yet indexed returns no result
- Malformed entityId format (not 'fedreg:XXXX-XXXXX') may cause lookup failure
- Payment failure (x402) if USDC not provided or insufficient
- Rate limiting or service unavailability on the upstream Railway deployment

## How this service works

Full stored detail for a single crypto & digital assets 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 digital asset, cryptocurrency, stablecoin, virtual currency, crypto.

## Output

Returns a stored entity object containing the full detail record for the specified Federal Register document, including regulatory metadata, rule type, and associated content for that document ID.

## 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-reg-crypto-19e4d78e/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)
