# ESGPulse ESG Score Intelligence

> ESGPulse ESG Score Intelligence 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-13).

Explains ESG scoring methodologies from MSCI, Sustainalytics, ISS, and Bloomberg, and analyzes how rating agencies diverge and what drives score changes.

## Facts

- Endpoint: GET https://esgpulse.vercel.app/api/esg/score
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/esgpulse-esg-score-intelligence-8ef1e19f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lTjOwrEclvx7db6ekuK4z

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-score-intelligence-8ef1e19f
```

Example prompt: Can you explain why Tesla's MSCI ESG score and its Sustainalytics score are so different, and what methodology each agency uses to arrive at their ratings?

## When to prefer this

Use this endpoint when you need to understand ESG rating methodology differences across MSCI, Sustainalytics, ISS, and Bloomberg, or want to explain divergence in scores for a specific company. Prefer this over generic ESG data endpoints when the user's question is about how scores are calculated or why agencies disagree, rather than raw score lookup.

## Known failure modes

- Unknown or unsupported company ticker returns no data
- Rating agency not supported returns an error or empty response
- Ambiguous company name without ticker may return incorrect match
- Stale methodology data if agency updates scoring model without API refresh
- HTTP 402 payment required if USDC payment is not attached to request

## 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 explanation of ESG scoring methodologies used by major rating agencies (MSCI, Sustainalytics, ISS, Bloomberg), highlights where and why these raters diverge on scores, and identifies the key factors that drive ESG score changes for a given company or in general.

## 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 | zh | ko | pt | nl | ar"
      },
      "rater": {
       "type": "string",
       "description": "all | msci | sustainalytics | iss | bloomberg | sp-global | ftse"
      },
      "sector": {
       "type": "string",
       "description": "Technology | Energy | Finance | Healthcare | Consumer (for methodology context)"
      },
      "company": {
       "type": "string",
       "description": "Tesla | Amazon | BP (company name for score lookup)"
      }
     }
    }
   },
   "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": {
  "company": "Tesla",
  "msci_rating": "BBB",
  "iss_governance_score": 2,
  "rater_divergence_reason": "MSCI weights product safety differently from Sustainalytics; Tesla governance concerns drive ISS score down",
  "score_improvement_levers": [
   "Board diversity",
   "Supply chain human rights audit",
   "Water disclosure"
  ],
  "sustainalytics_risk_score": 28.4,
  "sustainalytics_risk_category": "Medium"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-esg-score-intelligence-8ef1e19f/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)
