# ESGPulse Coffee Ethical Sourcing Checker

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

Checks whether a coffee brand is ethically sourced by returning Fair Trade, direct trade, and Rainforest Alliance certification status, farm-gate price transparency, red flags, and better-sourced roaster alternatives.

## Facts

- Endpoint: GET https://esgpulse.theaslangroupllc.com/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-checker-2c6ba351
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d4fOSdZtfmDYfSlUifRoy

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-checker-2c6ba351
```

Example prompt: Can you check if Blue Bottle Coffee is ethically sourced — I want to know their Fair Trade, direct trade, and Rainforest Alliance certification status, whether they're transparent about farm-gate prices, any red flags, and if there are better-sourced roaster alternatives?

## When to prefer this

Use this endpoint when you need to specifically verify the ethical sourcing credentials of a coffee brand, including certification status and price transparency signals. Prefer this over generic ESG endpoints when the query is narrowly about coffee supply chain ethics rather than broad corporate ESG scores.

## Known failure modes

- Unknown or very small coffee brand with no data in reference databases — returns null or low-confidence result
- Brand name ambiguity causes misidentification (e.g. generic name matching multiple roasters)
- Stale certification data if a brand's status changed recently
- HTTP 402 if payment not attached
- HTTP 400 if brand name parameter is missing or malformed

## How this service works

Ethical sourcing check — is this coffee brand ethically sourced? Fair trade, direct trade, and Rainforest Alliance certification status, farm-gate price-transparency signal, red flags, and better-sourced roaster alternatives, grounded in Transparent Trade Coffee, Cup of Excellence, Fairtrade, and Rainforest Alliance data.

## Output

Returns the coffee brand's Fair Trade, direct trade, and Rainforest Alliance certification status, a farm-gate price transparency signal, any ethical sourcing red flags, and a list of better-sourced roaster alternatives, grounded in Transparent Trade Coffee, Cup of Excellence, Fairtrade, and Rainforest Alliance data.

## 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-checker-2c6ba351/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from esgpulse.theaslangroupllc.com](https://www.zero.xyz/host/esgpulse.theaslangroupllc.com/llms.txt)
