# ESGPulse Greenwashing Risk Detector

> ESGPulse Greenwashing Risk Detector is a paid API for AI agents from esgpulse.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Analyzes marketing claims for greenwashing risk, checking compliance with EU Green Claims Directive substantiation requirements and flagging recent enforcement actions on a claim-by-claim basis

## Facts

- Endpoint: GET https://esgpulse.vercel.app/api/esg/greenwashing
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/esgpulse-greenwashing-risk-detector-01aa501e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w-7tJiRKzb4Dk9_BxURHq

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 esgpulse-greenwashing-risk-detector-01aa501e
```

Example prompt: Can you run our new product tagline 'Made with 100% renewable energy and carbon neutral by 2030' through ESGPulse's greenwashing detector and tell me if it meets EU Green Claims Directive substantiation requirements, and whether similar claims have triggered any enforcement actions?

## When to prefer this

Choose this endpoint when you specifically need claim-level greenwashing risk analysis against EU Green Claims Directive standards, including substantiation gaps and enforcement precedent — rather than broader ESG reporting, taxonomy alignment, or framework selection. Best suited for marketing teams, legal counsel, and compliance officers reviewing environmental messaging before publication.

## Known failure modes

- Missing or empty claim input returns an error indicating no content to analyze
- Claim text too vague or generic may yield low-confidence risk scoring
- EU Green Claims Directive rules may not apply to non-EU market claims, limiting relevance
- Network timeout or Vercel cold-start latency on infrequent calls
- Payment failure via x402 protocol results in 402 response and no analysis returned

## How this service works

ESGPulse delivers real-time ESG intelligence: CSRD compliance roadmaps, EU Taxonomy alignment checks, supply chain due diligence, emissions analysis, greenwashing risk, and more. x402 micropayment API.

## Output

A claim-by-claim risk analysis identifying greenwashing exposure, detailing which aspects of each claim meet or fail EU Green Claims Directive substantiation requirements, referencing relevant recent enforcement actions, and providing an overall compliance assessment with recommended corrective actions.

## Example request

```json
{
 "lang": "en",
 "topic": "climate",
 "format": "guide",
 "sector": "energy",
 "framework": "CSRD"
}
```

## 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 | de | fr | es | it | nl | pt | da | sv | pl | ar"
      },
      "claims": {
       "type": "string",
       "description": "carbon neutral | net zero | eco-friendly | sustainable (marketing claims to analyse)"
      },
      "company": {
       "type": "string",
       "description": "Shell | H&M | Volkswagen (company name for enforcement history lookup)"
      },
      "jurisdiction": {
       "type": "string",
       "description": "EU | UK | US | AU | CA | DE | FR | NL | other"
      }
     }
    }
   },
   "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": {
  "claim": "carbon neutral by 2030",
  "risk_level": "HIGH",
  "recent_enforcement": [
   "KLM fined by Dutch regulator for \"Fly Responsibly\" campaign",
   "H&M ASA ruling on Conscious Collection"
  ],
  "compliant_alternative": "Our Scope 1+2 emissions are verified by SGS to be offset via Gold Standard projects — Scope 3 reduction roadmap published at [URL]",
  "substantiation_required": [
   "LCA covering full value chain",
   "Third-party verification",
   "Scope 3 inclusion"
  ],
  "eu_green_claims_directive_compliance": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-greenwashing-risk-detector-01aa501e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from esgpulse.vercel.app](https://www.zero.xyz/host/esgpulse.vercel.app/llms.txt)
