# Consumer Protection & Advertising Compliance Brief

> Consumer Protection & Advertising 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 of the most important consumer protection and advertising regulatory changes from the Federal Register within a specified time window, with deadlines highlighted.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/reg-consumer-protection/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/consumer-protection-advertising-compliance-brief-b6dfa136
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yPSqB_0e325SfjO5azo0Z

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 consumer-protection-advertising-compliance-brief-b6dfa136
```

Example prompt: Give me a quick compliance digest of the consumer protection and advertising rules from the Federal Register that actually matter — covering the last 30 days — and call out any upcoming deadlines I should know about.

## When to prefer this

Use this endpoint when you need a human-readable, curated summary of consumer protection and advertising compliance changes rather than raw rule listings. Ideal for compliance officers, legal teams, or product managers who want a concise briefing without parsing individual Federal Register entries. Choose this over the raw Federal Register rules endpoint when you want LLM synthesis and prioritization rather than a scored list of raw documents.

## Known failure modes

- No significant changes in the window returns a brief with basedOnChanges: 0 and minimal content
- Invalid since datetime format returns a 400 error
- Upstream Federal Register data unavailable may result in empty or stale digest
- LLM generation failure may fall back to template-based generation (generatedBy: template)
- Payment not included or insufficient returns 402 Payment Required

## How this service works

LLM-written compliance digest of the consumer protection & advertising rules in the window that actually matter (unfair, deceptive, consumer protection, advertising, endorsement) — issuing agency named, deadlines called out.

## Output

A natural-language compliance brief (string) written by an LLM, summarizing the handful of most significant consumer protection and advertising regulatory changes in the requested window, with deadlines called out. Also includes the number of Federal Register changes the brief is based on and whether it was generated by LLM or template.

## 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/consumer-protection-advertising-compliance-brief-b6dfa136/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)
