# ESGPulse Commodity Sustainability Certification Check

> ESGPulse Commodity Sustainability Certification 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).

Checks whether a seafood, palm oil, tea, timber, or cotton product/brand is sustainably certified by cross-referencing major certification bodies (MSC, RSPO, FSC, Seafood Watch, Ethical Tea Partnership, Better Cotton) and returns a certification verdict with sustainability rating context and red flags.

## Facts

- Endpoint: GET https://esgpulse.vercel.app/api/esg/commodity
- 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-commodity-sustainability-certification-check-3fdcc6ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZkHK5suj445Rf2xx2K--9

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-commodity-sustainability-certification-check-3fdcc6ee
```

Example prompt: Can you check if 'Wild Pacific Salmon Co' is sustainably certified for seafood — I want to know their MSC or Seafood Watch status and whether there are any red flags?

## When to prefer this

Use this endpoint when you need to verify the sustainability certification status of a specific commodity product or brand across the major recognized certification schemes (MSC, RSPO, FSC, Seafood Watch, ETP, Better Cotton). It is purpose-built for supply chain due diligence, ESG screening, and procurement compliance for the five supported commodity categories. Prefer it over generic ESG score lookups when the question is specifically about recognized third-party certification status rather than overall ESG scoring.

## Known failure modes

- Unknown or unrecognized brand/product returns no certification data
- Commodity type not in supported set (seafood, palm oil, tea, timber, cotton) may return an error or empty result
- Outdated certification data if a brand's certification has recently lapsed
- Network or upstream data source unavailability causing timeout or partial response
- Ambiguous brand names with multiple matches may return incorrect results

## 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 containing a verdict with a rating (e.g. 'certified-and-clear'), the commodity type, the product or brand name, an array of certification statuses each listing the certifier and status, and a sustainability rating context object with rating context and any red flags.

## 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"
      },
      "commodity": {
       "type": "string",
       "description": "seafood | palm-oil | tea | timber | cotton (required)"
      },
      "product_or_brand": {
       "type": "string",
       "description": "Bumble Bee Tuna | Lipton | IKEA (required — product 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": {
  "verdict": {
   "rating": "certified-and-clear"
  },
  "commodity": "seafood",
  "product_or_brand": "Example Seafood Co",
  "certification_status": [
   {
    "status": "certified",
    "certifier": "MSC"
   }
  ],
  "sustainability_rating_context": {
   "rating": "Best Choice"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-commodity-sustainability-certification-check-3fdcc6ee/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)
