# 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, $5/call, status unknown (last checked 2026-09-14).

Batch-lints wellness and 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/batch-lint
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/royal-feel-ftc-compliance-copy-linter-127e8ad2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Psjo-o5oAoXqP0s0UIUGC

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-127e8ad2 -d '<json body>'
```

Example prompt: Can you run an FTC compliance lint check on this batch of supplement product descriptions and flag any disease treatment claims, unqualified efficacy statements, or weight loss hype?

## When to prefer this

Use this endpoint when you need automated, rule-based FTC compliance screening of wellness or marketing copy in batch, particularly when you need specific rule IDs and severity classifications (block vs warn) rather than general editorial feedback. Ideal for pre-publication audits of supplement, weight loss, or health product advertising where FTC enforcement risk is a concern.

## Known failure modes

- Missing or malformed 'input' body returns a validation error
- Non-POST method returns 405
- Payment not included or insufficient USDC triggers 402 payment required
- Empty body array may return empty results array
- Copy exceeding size limits may be rejected

## 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

A JSON object with an 'ok' boolean and a 'results' array. Each result corresponds to one submitted copy item and includes its index, an 'ok' status, and a 'findings' array listing any violations — each finding has the flagged term, a rule ID (e.g. FTC-DISEASE), and a severity level (e.g. 'block').

## 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"
      },
      "results": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "results": [
   {
    "ok": true,
    "index": 0,
    "findings": []
   },
   {
    "ok": false,
    "index": 1,
    "findings": [
     {
      "term": "cure cancer",
      "rule_id": "FTC-DISEASE",
      "severity": "block"
     }
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/royal-feel-ftc-compliance-copy-linter-127e8ad2/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)
