# Food Manufacturing & Safety Regulatory Compliance Digest

> Food Manufacturing & Safety Regulatory Compliance Digest is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns an LLM-generated digest of recent food manufacturing and safety regulatory changes, highlighting rules that matter and calling out key deadlines.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-food-safety/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/food-manufacturing-safety-regulatory-compliance-digest-13a17e56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l1KCVPNbUWdl32dI-kTdF

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 food-manufacturing-safety-regulatory-compliance-digest-13a17e56
```

Example prompt: Give me a compliance digest of food manufacturing and safety regulations from the last 30 days — summarize the rules that actually matter and flag any upcoming deadlines.

## When to prefer this

Use this endpoint when an agent or user needs a quick, human-readable digest of food safety and manufacturing regulatory changes — especially useful for compliance officers, food industry professionals, or any workflow that needs to monitor FDA and related food safety rule changes without manually parsing regulatory feeds. Prefer this over raw regulatory data sources when a synthesized, deadline-aware narrative summary is needed rather than structured data.

## Known failure modes

- No regulatory changes found in the specified window — may return an empty or minimal brief
- Invalid date-time format for 'since' parameter returns a validation error
- LLM generation failure may fall back to template-based brief (generatedBy: 'template')
- Service unavailability returns HTTP 5xx error
- Payment not received returns HTTP 402 Payment Required

## How this service works

LLM-written compliance digest of the food manufacturing & safety rules in the window that actually matter (food safety, food label, food additive, foodborne, dietary supplement) — issuing agency named, deadlines called out.

## Output

Returns a structured object containing: a 'brief' field with an LLM-written plain-English narrative summarizing the most important food manufacturing and safety regulatory changes in the time window; a 'generatedBy' field indicating whether the brief was produced by an LLM or a template; and 'basedOnChanges' with the integer count of regulatory changes that were analyzed to produce the digest.

## 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": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/food-manufacturing-safety-regulatory-compliance-digest-13a17e56/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)
