# Aviation & Aircraft Safety Compliance Digest

> Aviation & Aircraft Safety 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-14).

Returns an LLM-generated brief summarizing the most important aviation and aircraft safety regulatory changes in a given time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-aviation/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aviation-aircraft-safety-compliance-digest-93961dcc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H14RG_p_ffTxRboMQcvRb

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 aviation-aircraft-safety-compliance-digest-93961dcc
```

Example prompt: Give me a compliance digest of aviation and aircraft safety rules from the last 30 days — I need to know which new requirements actually matter and any upcoming deadlines.

## When to prefer this

Use this endpoint when you need a human-readable, deadline-aware summary of aviation and aircraft safety regulatory changes rather than raw regulatory data. Ideal for compliance officers, aviation professionals, or agents that need to surface actionable regulatory intelligence without parsing raw rule text. Prefer over generic news search when you specifically need structured compliance framing with deadlines highlighted.

## Known failure modes

- No recent regulatory changes found in window — brief may indicate no material changes
- Invalid date-time format for 'since' parameter returns validation error
- Payment failure (x402) if USDC not provided or insufficient
- LLM generation failure may fall back to template-based output (reflected in generatedBy field)
- Very long or open-ended time windows may increase latency or reduce brief quality

## How this service works

LLM-written compliance digest of the aviation & aircraft safety rules in the window that actually matter (airworthiness, aircraft, pilot, drone, unmanned) — issuing agency named, deadlines called out.

## Output

A natural-language brief written by an LLM summarizing the handful of aviation and aircraft safety regulatory changes in the requested window that actually matter, with deadlines called out. Also includes metadata: whether it was generated by an LLM or template, and how many underlying regulatory changes it was based on.

## 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/aviation-aircraft-safety-compliance-digest-93961dcc/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)
