# GlowPulse Marketing Claims & Greenwashing Detector

> GlowPulse Marketing Claims & Greenwashing Detector is a paid API for AI agents from glowpulse-nine.vercel.app, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Analyzes skincare product marketing claims (e.g. 'clean,' 'non-toxic,' 'hypoallergenic') for legal meaning, ingredient-list support, and greenwashing risk level.

## Facts

- Endpoint: GET https://glowpulse-nine.vercel.app/api/glow/claims-check
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glowpulse-marketing-claims-greenwashing-detector-c6ee5bc3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xgMPk3D3potSOfHeiSpjG

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 glowpulse-marketing-claims-greenwashing-detector-c6ee5bc3
```

Example prompt: Can you check whether the claim 'clean' on this CeraVe moisturizer is legally meaningful and whether the ingredient list actually supports it — and tell me the greenwashing risk level?

## When to prefer this

Choose this endpoint when a user wants to fact-check specific marketing language on a skincare label — particularly terms like 'clean,' 'non-toxic,' 'natural,' 'hypoallergenic,' or 'dermatologist-tested.' It is distinct from ingredient safety checks (which evaluate individual INCI names) or routine builders; this endpoint focuses specifically on the truthfulness and regulatory status of label claims and greenwashing risk.

## Known failure modes

- Claim text is too vague or ambiguous to map to a known regulatory category
- Ingredient list not provided when needed to assess claim support
- Unrecognized or proprietary marketing term with no regulatory precedent
- Network or upstream service timeout returning a 5xx error
- Missing required query parameters returning a 400 error

## How this service works

What does "clean beauty" actually mean? Greenwashing and marketing-claim detector for skincare — legal meaning of "clean," "non-toxic," "dermatologist-tested," and "hypoallergenic," whether the ingredient list actually supports the claim, and greenwashing risk level.

## Output

Returns a JSON array of claims_analyzed, where each entry includes the marketing claim text, its legal meaning (or lack thereof), whether the ingredient list supports the claim, and a greenwashing risk level (e.g. low, medium, high).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | ko | ja | de | fr | es | pt (optional)"
      },
      "claims": {
       "type": "string",
       "description": "required — comma-separated marketing claims"
      },
      "product_name": {
       "type": "string",
       "description": "optional — improves ingredient-support analysis"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "claims_analyzed": [
   {
    "claim": "clean",
    "legal_meaning": "no standardized legal definition",
    "greenwashing_risk": "medium"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glowpulse-marketing-claims-greenwashing-detector-c6ee5bc3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from glowpulse-nine.vercel.app](https://www.zero.xyz/host/glowpulse-nine.vercel.app/llms.txt)
