# Federal Register Social Security Document Lookup

> Federal Register Social Security 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 document related to Social Security regulations, looked up by entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-social-security/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-social-security-document-lookup-64511c0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mTfo_R-4IHYvbS_G8XOCT

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-social-security-document-lookup-64511c0d
```

Example prompt: Pull up the stored Federal Register document details for the Social Security entry with ID fedreg:2026-14090 — I need the full record from the oracles Social Security tracker.

## When to prefer this

Use this endpoint when you have a specific Federal Register Social Security document entityId and need the full stored detail record for that document. Prefer this over list/search endpoints when the entityId is already known. Best for compliance workflows that need to retrieve cached regulation details without re-fetching from the Federal Register directly.

## Known failure modes

- Missing or invalid entityId returns empty or error response
- entityId not tracked or not found in store returns no entity
- Malformed entityId format (not matching 'fedreg:YYYY-NNNNN') may cause lookup failure
- Payment not processed results in 402 response
- Omitting the id query param returns a list of tracked entities rather than a specific document

## How this service works

Full stored detail for a single Social Security & disability benefits 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 social security, disability, supplemental security, ssi, old-age.

## Output

Returns a stored entity object containing the full detail record for the specified Federal Register Social Security document, including regulation metadata and content associated with the given 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-social-security-document-lookup-64511c0d/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)
