# ESGPulse Company ESG Intelligence

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

Retrieves comprehensive ESG data for a specific company including CDP score, SEC climate disclosures, Scope 1/2/3 emissions, SBTi targets, and ESG controversies from public data sources

## Facts

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

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-company-esg-intelligence-d693f0ee
```

Example prompt: Pull up the full ESG intelligence profile for Tesla — I need their CDP score, Scope 1/2/3 emissions, whether they have SBTi targets set, and any recent ESG controversies from public data.

## When to prefer this

Use this endpoint when you need a consolidated ESG intelligence snapshot for a specific public company — combining emissions data, CDP scores, SBTi targets, and controversy signals in a single call. Prefer this over individual framework-specific endpoints when the goal is a broad company-level ESG overview rather than regulatory compliance guidance or framework navigation.

## Known failure modes

- Company not found or unrecognized identifier returns empty or error response
- Private companies with no public disclosures may return sparse or null fields
- CDP/SBTi data unavailable for smaller or non-participating companies
- Rate limiting or payment failure (x402) if USDC balance insufficient
- Stale data if underlying public sources have not been recently updated

## 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 profile for the requested company including CDP disclosure score, referenced SEC climate filings, quantified Scope 1, Scope 2, and Scope 3 greenhouse gas emissions, Science Based Targets initiative (SBTi) commitments or status, and a summary of notable ESG controversies sourced from public data.

## Example request

```json
{
 "company": "Tesla"
}
```

## 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"
      },
      "focus": {
       "type": "string",
       "description": "all | emissions | governance | social | controversies | ratings | sbti"
      },
      "company": {
       "type": "string",
       "description": "Apple | Microsoft | Shell | Nestlé | Toyota (public company name — required)"
      }
     }
    }
   },
   "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": "Apple Inc",
  "sbti_status": "Committed — 1.5°C target by 2030",
  "scope1_mt_co2e": 58400,
  "scope2_mt_co2e": 0,
  "scope3_mt_co2e": 22600000,
  "cdp_climate_score": "A",
  "esg_controversies": [
   "App Store antitrust investigations",
   "Supplier labor conditions (Foxconn)"
  ],
  "women_on_board_pct": 36,
  "board_independence_pct": 82
 }
}
```

## More

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