# Reg Wildlife Federal Register Document Detail

> Reg Wildlife Federal Register Document Detail 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-14).

Retrieves stored detail for a single Federal Register document by entityId, or lists all tracked Federal Register entities.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-wildlife/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reg-wildlife-federal-register-document-detail-2096ea19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WbwzNgnZaGkELrsp3LC3U

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 reg-wildlife-federal-register-document-detail-2096ea19
```

Example prompt: Can you pull up the stored details for Federal Register document fedreg:2026-14090 from the wildlife regulation tracker?

## When to prefer this

Use this endpoint when you have a specific Federal Register document entityId (formatted as 'fedreg:YYYY-NNNNN') and need its stored detail, or when you want to enumerate all Federal Register documents currently tracked by the wildlife regulation oracle. Prefer this over a general web search when you need structured, pre-parsed regulatory data.

## Known failure modes

- Invalid or unrecognized entityId returns empty or error response
- Omitting the id parameter returns a list rather than a specific document
- Document not yet ingested into the oracle's store returns no result
- Malformed entityId format (missing 'fedreg:' prefix) may return no match
- Payment not fulfilled results in 402 response

## How this service works

Full stored detail for a single endangered species & wildlife 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 endangered, threatened species, critical habitat, migratory, wildlife.

## Output

Returns a JSON object with the stored entity detail for the specified Federal Register document, including regulatory metadata and document fields. If no ID is provided, returns a list of all tracked Federal Register entity IDs.

## 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/reg-wildlife-federal-register-document-detail-2096ea19/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)
