# Royal Feel — FTC Compliance Copy Linter

> Royal Feel — FTC Compliance Copy Linter is a paid API for AI agents from royal-feel-x402.fly.dev, paid per call via x402, $2/call, status unknown (last checked 2026-09-15).

Analyzes wellness or marketing copy for FTC compliance issues, flagging unqualified efficacy claims, disease treatment claims, weight loss hype, and unscientific buzzwords.

## Facts

- Endpoint: POST https://royal-feel-x402.fly.dev/api/lint-copy
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/royal-feel-ftc-compliance-copy-linter-66fd0eb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_co5Ke25WlgCudlAJ3yhrQ

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 royal-feel-ftc-compliance-copy-linter-66fd0eb6 -d '<json body>'
```

Example prompt: Can you run an FTC compliance lint on this copy for my new weight loss supplement: 'Our formula is FDA approved and clinically proven to melt fat, reverse diabetes, and boost immunity — results guaranteed!'? I need to know what's flagged and how to fix it.

## When to prefer this

Choose this endpoint when you need rule-based, FTC-specific compliance checking of wellness, supplement, or health marketing copy — especially when you need structured findings with severity ratings and suggested rewrites. Prefer it over generic AI writing reviewers when you need traceable rule IDs (e.g. FTC-FDA-APPROVED) and actionable remediation guidance tied to specific regulatory frameworks.

## Known failure modes

- Empty or missing copy body returns an error with ok: false
- Payment of $2 USDC not completed results in 402 Payment Required
- Malformed JSON body causes a parse error
- Very long copy may time out or exceed input limits
- Non-English copy may not be accurately analyzed for FTC context

## How this service works

Pay $2.00 USDC, get an FTC compliance lint report on your wellness or marketing copy. Flags unqualified efficacy claims, disease treatment claims, weight loss hype, and unscientific buzzwords.

## Output

Returns a JSON object with an `ok` boolean and a `findings` array. Each finding includes the offending term, a rule ID (e.g. FTC-FDA-APPROVED), the surrounding snippet, a severity level (e.g. 'block'), a plain-English explanation of the violation, and a suggested compliant rewrite.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "error": {
       "type": "string"
      },
      "findings": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "findings": [
   {
    "term": "FDA approved",
    "rule_id": "FTC-FDA-APPROVED",
    "snippet": "...this supplement is FDA approved and safe...",
    "severity": "block",
    "explanation": "The FDA registers facilities but does NOT approve wellness products or dietary supplements.",
    "suggested_rewrite": "Remove FDA approval claims. You may use: 'Manufactured in an FDA-registered facility...'"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/royal-feel-ftc-compliance-copy-linter-66fd0eb6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from royal-feel-x402.fly.dev](https://www.zero.xyz/host/royal-feel-x402.fly.dev/llms.txt)
