# Federal Register Document Detail Lookup (Intellectual Property)

> Federal Register Document Detail Lookup (Intellectual Property) 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 in the intellectual property regulatory domain by entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-intellectual-property/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-intellectual-property-4cd89fbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TMzW60tmw-Sg81NLxoLvC

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-intellectual-property-4cd89fbd
```

Example prompt: Pull up the full stored details for Federal Register document fedreg:2026-14090 from the intellectual property regulations tracker.

## When to prefer this

Use this endpoint when you have a specific Federal Register document entityId (e.g. 'fedreg:2026-14090') and need to retrieve its full stored detail record within the intellectual property regulatory domain. Prefer this over list/feed endpoints when you already know the document ID and want comprehensive details on a single filing.

## Known failure modes

- Entity ID not found — returns empty or 404-style response if the entityId does not exist in the store
- Missing required 'id' query parameter may return a list instead of a single document
- Invalid entityId format returns an error or empty entity object
- Payment failure (x402) if USDC not provided or insufficient funds

## How this service works

Full stored detail for a single patents & trademarks 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 patent, trademark, uspto, trademark trial, patent term.

## Output

Returns a stored entity object containing detailed metadata and content for the specified Federal Register document, including regulatory filing information relevant to intellectual property rules. If no ID is provided, lists all tracked entities in the intellectual property domain.

## 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-intellectual-property-4cd89fbd/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)
