# ESGPulse Coffee Ethical Sourcing Check

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

Returns ethical sourcing intelligence for a coffee brand or roaster, including Fairtrade/Rainforest Alliance certification status, farm-gate price transparency, direct trade evidence, red flags, and better-sourced alternatives.

## Facts

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

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-coffee-ethical-sourcing-check-8634392c
```

Example prompt: Is Stumptown Coffee ethically sourced? I want to know their Fairtrade and Rainforest Alliance certification status, whether they publish farm-gate prices, any red flags, and if there are better-sourced roasters I should consider instead.

## When to prefer this

Choose this endpoint when you specifically need ethical sourcing intelligence for a coffee brand, including certification cross-referencing across Fairtrade, Rainforest Alliance, and direct trade sources, plus farm-gate price transparency signals. Prefer this over generic ESG endpoints when the query is specifically about coffee roasters or coffee brands rather than broader commodity sustainability or general brand ethics.

## Known failure modes

- Brand or roaster not found in sourcing databases — returns empty or null certification fields
- Brand name is ambiguous or misspelled — may return results for a different brand or no match
- Data may be stale if certification status recently changed — certifications can lapse
- Small or ultra-local roasters may have no indexed data in Transparent Trade Coffee, Cup of Excellence, Fairtrade, or Rainforest Alliance datasets
- Payment failure (x402 protocol) if USDC balance is insufficient — returns 402 error

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

Returns a JSON object with the queried roaster or brand name, a list of certification statuses (Fairtrade, Rainforest Alliance, etc.), a price transparency signal indicating whether farm-gate prices are published, evidence of direct trade transparency, any sourcing red flags, and a list of better-sourced roaster alternatives with explanations of why they rank higher.

## 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 | ja | pt | ar"
      },
      "origin": {
       "type": "string",
       "description": "Ethiopia | Colombia | Guatemala (optional — coffee origin)"
      },
      "roaster_or_brand": {
       "type": "string",
       "description": "Counter Culture Coffee | Starbucks | Blue Bottle (required — roaster or brand name)"
      }
     }
    }
   },
   "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": {
  "roaster_or_brand": "Counter Culture Coffee",
  "certification_status": [
   {
    "status": "not found",
    "certifier": "Fairtrade"
   }
  ],
  "price_transparency_signal": {
   "publishes_farm_gate_prices": true
  },
  "better_sourced_alternatives": [
   {
    "why": "Publishes farm-level pricing",
    "brand": "Example Roaster"
   }
  ],
  "direct_trade_transparency_evidence": {
   "found": true
  }
 }
}
```

## More

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