# ESGPulse ESG Disclosure Builder

> ESGPulse ESG Disclosure Builder is a paid API for AI agents from esgpulse.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Provides structured guidance on what to disclose in ESG reports, including ESRS data points checklists, GRI index templates, and climate-related financial disclosure guides

## Facts

- Endpoint: GET https://esgpulse.vercel.app/api/esg/disclosure
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/esgpulse-esg-disclosure-builder-dee3a240
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ON0qvG0aKJG8tiTt8TXOn

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-esg-disclosure-builder-dee3a240
```

Example prompt: Can you build me an ESG disclosure structure for our sustainability report — I need to know what to disclose, a GRI content index template, the relevant ESRS data points checklist, and guidance on climate-related financial disclosures?

## When to prefer this

Choose this endpoint when you need to build or structure an ESG disclosure report and want actionable checklists, GRI index templates, or ESRS data point guidance — especially when preparing formal sustainability disclosures rather than just comparing frameworks or checking scores.

## Known failure modes

- No specific framework specified — may return generic guidance rather than framework-specific output
- Overly broad query may result in high-level guidance without actionable checklists
- Payment failure (402) if USDC not available or x402 protocol not supported
- Rate limiting or service unavailability on Vercel hosting

## 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 structured ESG disclosure guide including: what information to disclose and how to organize it, an ESRS data points checklist indicating required disclosures, a GRI index template for structuring the report, and a climate-related financial disclosures guide aligned with TCFD or similar frameworks.

## 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 | nl | pl | ja | zh | pt | ar"
      },
      "topic": {
       "type": "string",
       "description": "all | climate | biodiversity | water | workforce | governance | social"
      },
      "format": {
       "type": "string",
       "description": "guide | checklist | template | datapoints"
      },
      "sector": {
       "type": "string",
       "description": "Technology | Finance | Energy | Healthcare | Manufacturing"
      },
      "framework": {
       "type": "string",
       "description": "CSRD | GRI | ISSB | TCFD | CDP | SASB"
      }
     }
    }
   },
   "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": {
  "framework": "CSRD",
  "mandatory_esrs": [
   "ESRS 2",
   "ESRS E1",
   "ESRS S1"
  ],
  "tcfd_alignment": "ESRS E1 covers TCFD climate disclosures",
  "total_data_points": 82,
  "checklist_included": true,
  "gri_cross_reference": true,
  "phased_requirements": {
   "year1": "ESRS 2 + material topics",
   "year3": "full ESRS suite"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-esg-disclosure-builder-dee3a240/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)
