# Federal Register Consumer Finance Document Lookup

> Federal Register Consumer Finance 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 details for a single Federal Register document in the consumer finance regulatory domain, identified by an entityId like 'fedreg:2026-14090'.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-consumer-finance/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-consumer-finance-document-lookup-2e211437
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iOkmgvr0mVy2sbBL_u3PL

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-consumer-finance-document-lookup-2e211437
```

Example prompt: Pull up the stored Federal Register document details for entity ID fedreg:2026-14090 — I need to see what's in that consumer finance regulatory filing.

## When to prefer this

Use this endpoint when you need to retrieve the full stored details for a specific Federal Register consumer finance document by its entityId (e.g. 'fedreg:2026-14090'). Prefer this over general web search when you already have the entityId and need structured, machine-readable regulatory document data.

## Known failure modes

- Invalid or unknown entityId returns empty or error response
- Missing required 'id' query parameter returns a list of tracked entities instead of a single document
- Network or service unavailability returns HTTP 5xx
- Payment failure (x402) blocks access if USDC not provided
- Malformed entityId format returns a 400 or not-found error

## How this service works

Full stored detail for a single consumer lending & payments 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 consumer financial, fair credit, electronic fund, truth in lending, overdraft.

## Output

Returns a stored entity object containing detailed metadata and content for the specified Federal Register document, including regulatory filing information relevant to consumer finance.

## 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-consumer-finance-document-lookup-2e211437/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)
