# Federal Register Agriculture Document Lookup

> Federal Register Agriculture 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 in the agriculture regulatory domain, identified by an entityId like 'fedreg:2026-14090'.

## Facts

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

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-agriculture-document-lookup-d339871b
```

Example prompt: Pull up the full details for Federal Register document fedreg:2026-14090 — I need to see what's stored about that agriculture regulation.

## When to prefer this

Use this endpoint when you have a specific Federal Register document entityId (format: 'fedreg:YYYY-NNNNN') and need to retrieve its full stored detail within the agriculture regulatory domain. Prefer this over general web search when you need structured, machine-readable data about a tracked agriculture regulation or rule.

## Known failure modes

- Entity ID not found — document may not be tracked or ID is malformed
- Missing required 'id' query parameter returns list mode instead of single document
- Invalid entityId format (not matching 'fedreg:YYYY-NNNNN') may return empty or error
- Service unavailable or upstream data store error returns HTTP 5xx
- Payment required error (402) if x402 payment header is missing or insufficient

## How this service works

Full stored detail for a single agriculture & livestock 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 agricultur, livestock, crop, grain, farm.

## Output

Returns a structured entity object containing stored detail for the requested Federal Register document, including metadata and regulatory content fields. If no ID is provided, lists all tracked agriculture-related Federal Register entities.

## 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-agriculture-document-lookup-d339871b/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)
