# ESGPulse Ethical Sourcing Check

> ESGPulse Ethical Sourcing Check is a paid API for AI agents from esgpulse.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Returns certifications (B Corp, Fairtrade, Rainforest Alliance), controversies, UK Modern Slavery Statement Registry status, and a transparency verdict for any company or brand

## Facts

- Endpoint: GET https://esgpulse.vercel.app/api/esg/source-check
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/esgpulse-ethical-sourcing-check-a0b15fbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UpWz5LJuItAA6wGrFWLo5

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-ethical-sourcing-check-a0b15fbe
```

Example prompt: Can you check whether Patagonia is ethically sourced — I want to know about their B Corp or Fairtrade certifications, any controversies, and whether they have a UK Modern Slavery Statement on record?

## When to prefer this

Use this endpoint when you need a broad ethical sourcing overview for any company or brand, covering certifications, human rights compliance (including UK Modern Slavery), and controversies in a single call. Prefer this over the commodity-specific or fashion-specific sibling endpoints when the brand is not in a specific sector like coffee, fashion, or seafood.

## Known failure modes

- Brand not found in any open registry — returns empty certifications array
- Ambiguous brand name matching multiple companies — may return results for wrong entity
- UK Modern Slavery Registry not yet updated for current year — status may be stale
- No controversy data available for lesser-known brands — controversies field may be empty
- Rate limit or payment failure — 402 payment required if USDC payment not processed

## 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 JSON object containing the brand name, a list of certifications found (each with status, evidence, and certifier), a transparency verdict with a rating (e.g. strong/weak), and the brand's UK Modern Slavery Statement Registry status.

## 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 | zh | ja | pt | ar"
      },
      "brand": {
       "type": "string",
       "description": "Patagonia | Shein | Nestle (required — brand or company name)"
      },
      "category": {
       "type": "string",
       "description": "apparel | electronics | food | beauty (optional)"
      }
     }
    }
   },
   "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": {
  "brand": "Patagonia",
  "certifications_found": [
   {
    "status": "certified",
    "evidence": "Listed on B Corp directory",
    "certifier": "B Corp"
   }
  ],
  "transparency_verdict": {
   "rating": "strong"
  },
  "modern_slavery_statement": {
   "status": "found in UK registry"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-ethical-sourcing-check-a0b15fbe/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)
