# ESGPulse Supply-Chain Due Diligence API

> ESGPulse Supply-Chain Due Diligence API is a paid API for AI agents from esgpulse.theaslangroupllc.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Performs supply-chain ESG due diligence covering CSDDD obligations, Tier 1-N risk mapping, human-rights red flags, forced-labor screening, and supplier questionnaire templates.

## Facts

- Endpoint: GET https://esgpulse.theaslangroupllc.com/api/esg/supply-chain
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/esgpulse-supply-chain-due-diligence-api-c6ddd89e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r4PLrt_GsWikw3W9ZNVy_

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-supply-chain-due-diligence-api-c6ddd89e
```

Example prompt: Run a supply-chain ESG due diligence check on my Tier 1 and Tier 2 textile suppliers based in Bangladesh and Vietnam — I need to know about any forced-labor red flags, human rights risks, and whether we're meeting CSDDD obligations before our procurement review next month.

## When to prefer this

Choose this endpoint when you need supply-chain-specific ESG due diligence covering multi-tier supplier risk, CSDDD regulatory compliance, or forced labor screening — as opposed to general ESG framework comparison or carbon/emissions reporting. Ideal for procurement agents, compliance officers, and legal teams preparing for EU Corporate Sustainability Due Diligence Directive audits.

## Known failure modes

- Missing or unrecognized supplier identifiers returns a 400 error with validation details
- Unsupported country or sector codes return a 422 with acceptable enum values
- Payment not received or x402 authorization failure returns a 402 Payment Required
- Upstream data source unavailability returns a 503 with retry guidance
- Overly broad queries with no supplier scope may return empty risk results

## How this service works

Supply-chain ESG due diligence for compliance and procurement agents. Covers CSDDD obligations, Tier 1-N risk mapping, human-rights red flags, forced-labor screening, and supplier questionnaire templates.

## Output

Returns a structured ESG due diligence report covering CSDDD compliance status, Tier 1-N supplier risk mapping, human rights and forced labor red flags, ESG risk scores, and downloadable supplier questionnaire templates for remediation and procurement decisions.

## 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 | ko | pt | ar"
      },
      "scope": {
       "type": "string",
       "description": "full | tier1 | human-rights | environment | governance"
      },
      "sector": {
       "type": "string",
       "description": "Apparel | Electronics | Food | Automotive | Chemicals | Mining"
      },
      "company": {
       "type": "string",
       "description": "Apple | Zara | LVMH (company name for targeted analysis)"
      },
      "origin_countries": {
       "type": "string",
       "description": "CN,VN,BD (comma-separated ISO country codes of supplier origins)"
      }
     }
    }
   },
   "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": {
  "csddd_applies": true,
  "tier1_actions": [
   "Map direct suppliers",
   "Deploy supplier questionnaire",
   "Conduct on-site audits for high-risk"
  ],
  "csddd_deadline": "2027-01-01",
  "forced_labor_flags": [
   "Xinjiang cotton sourcing risk"
  ],
  "high_risk_countries": [
   "Bangladesh",
   "Myanmar",
   "Xinjiang (CN)"
  ],
  "supplier_questionnaire_template": "available in response"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-supply-chain-due-diligence-api-c6ddd89e/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)
