# Veterans Benefits & Healthcare Compliance Brief

> Veterans Benefits & Healthcare Compliance Brief 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 summarizing the most important veterans benefits and healthcare regulatory changes in a configurable time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-veterans/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/veterans-benefits-healthcare-compliance-brief-51751dcf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__ew4qp9CewDOjIsBwlLoK

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 veterans-benefits-healthcare-compliance-brief-51751dcf
```

Example prompt: Give me a compliance briefing on veterans benefits and healthcare rules that have changed in the last 30 days — I need to know which ones actually matter and any upcoming deadlines.

## When to prefer this

Use this endpoint when you need a human-readable, LLM-synthesized briefing on veterans benefits and healthcare compliance changes rather than raw regulatory data. Prefer this over raw Federal Register endpoints when the goal is a curated, digestible summary with deadlines highlighted rather than individual rule details. Best suited for compliance monitoring workflows, veteran services organizations, or anyone needing a quick read on what VA-related rules matter right now.

## Known failure modes

- No regulatory changes found in the requested window — brief may be empty or minimal
- since parameter malformed (not a valid ISO 8601 datetime) — 400 error
- Payment not provided or insufficient — 402 Payment Required
- Upstream Federal Register data unavailable — may return stale or partial brief
- LLM generation failure — may fall back to template-based output

## How this service works

LLM-written compliance digest of the veterans benefits & healthcare rules in the window that actually matter (veteran, disability compensation, va health, gi bill, servicemember) — issuing agency named, deadlines called out.

## Output

A natural-language compliance digest written by an LLM summarizing the handful of veterans benefits and healthcare regulatory changes in the requested time window that actually matter, with deadlines called out. Also includes metadata indicating whether the brief was LLM- or template-generated 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/veterans-benefits-healthcare-compliance-brief-51751dcf/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)
