# ESGPulse Fashion Brand Ethical Sourcing Check

> ESGPulse Fashion Brand Ethical Sourcing Check 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-14).

Returns an ethical sourcing and ESG assessment for any apparel brand covering labor practices, environmental impact, animal welfare, and supply-chain transparency using open public registries.

## Facts

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

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-fashion-brand-ethical-sourcing-check-d68db95f
```

Example prompt: Can you check the ethical sourcing record for Zara — I want to know their labor practices, whether they publish their supplier list, their fur policy, and if they show up in the Fashion Transparency Index?

## When to prefer this

Choose this endpoint when you need a quick, free-registry-grounded ethical sourcing check specifically for apparel and fashion brands, covering the intersection of labor rights, supply chain transparency, environmental compliance, and animal welfare. It is ideal when you want to cross-reference multiple authoritative open registries (UK Modern Slavery Statement Registry, Fashion Transparency Index, Wikirate) in a single call rather than querying each separately. Prefer this over generic ESG score endpoints when fashion-specific dimensions like fur policy, EUDR relevance, and supplier list publication are important to the query.

## Known failure modes

- Brand not found in any referenced registry — returns empty or null fields for most categories
- Ambiguous brand name matches multiple entities — may return data for wrong brand
- Registry data may be outdated if underlying sources have not been recently updated
- Very small or private labels with no public ESG footprint may return minimal data
- API returns error if brand parameter is missing or malformed

## 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, an overall ethical sourcing verdict with a rating (e.g. 'moderate'), labor practices details including modern slavery statement registry status, transparency practices showing whether a supplier list is published, environmental practices including EUDR relevance, animal welfare practices including fur policy, and whether the brand appears in the Fashion Transparency Index — all sourced from free open public registries.

## 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": "Shein | Zara | Patagonia | Levi's (required — fashion/apparel brand name)"
      },
      "aspect": {
       "type": "string",
       "description": "labor | environment | animal | transparency | overall (optional, default overall)"
      }
     }
    }
   },
   "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": "Example Apparel Co",
  "aspect": "overall",
  "verdict": {
   "rating": "moderate"
  },
  "labor_practices": {
   "modern_slavery_statement_status": "found in UK registry"
  },
  "transparency_practices": {
   "supplier_list_published": true
  },
  "environmental_practices": {
   "eudr_relevant": false
  },
  "animal_welfare_practices": {
   "fur_policy": "fur-free (per Fur Free Alliance or brand statement)"
  },
  "fashion_transparency_index": {
   "found": true
  }
 }
}
```

## More

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