# Cross-Industry Compliance Audit Brief

> Cross-Industry Compliance Audit Brief is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Returns a prioritized, LLM-written compliance action brief aggregating regulatory changes, FDA/NHTSA recalls, OFAC sanctions, and CVE/KEV feeds for a specified industry vertical.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/complianceaudit/check
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cross-industry-compliance-audit-brief-5bf78bd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LQjzsE2nVKA5n-EIH0H93

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 cross-industry-compliance-audit-brief-5bf78bd5
```

Example prompt: Pull a full compliance audit for the fintech industry — I need an LLM-prioritized brief covering recent regulatory changes, any FDA or NHTSA recalls, OFAC sanctions, and active CVEs that apply to fintech.

## When to prefer this

Choose this endpoint when you need a single aggregated compliance snapshot across multiple regulatory and threat intelligence sources for a named industry — replacing the need to call FDA, OFAC, CVE/KEV, and Federal Register feeds separately and synthesize results yourself. Ideal for automated compliance monitoring, board-level risk briefings, or agent workflows that need a human-readable prioritized action list without custom integration work.

## Known failure modes

- Missing 'industry' query parameter returns a 400 validation error
- Unrecognized or unsupported industry name may return empty findings or a generic brief
- Upstream regulatory feed outage may result in partial data or a 503
- Payment not provided or insufficient USDC triggers x402 payment-required response
- since parameter malformed or out of range may return no findings

## How this service works

PREMIUM one-call cross-surface compliance brief: pass ?industry=<name> (e.g. 'medical devices', 'fintech', 'cannabis') and get the recent high-significance changes fanned across that industry's relevant RegWatch verticals, FDA/NHTSA recalls, OFAC sanctions, and CVE/KEV feeds, plus an LLM-written prioritized action brief. Replaces a dozen separate feed calls + synthesis.

## Output

Returns a JSON object with an array of compliance findings (each representing a high-significance change from RegWatch, recalls, sanctions, or CVE/KEV feeds), an overall verdict string summarizing the compliance risk posture, an LLM-generated prioritized action brief, and a count of packages/feeds audited. The generatedBy field indicates whether the brief was LLM- or template-produced.

## 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",
     "required": [
      "industry"
     ],
     "properties": {
      "since": {
       "type": "string"
      },
      "industry": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "overallVerdict": {
       "type": "string"
      },
      "packagesAudited": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cross-industry-compliance-audit-brief-5bf78bd5/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)
