# ESGPulse Company ESG Intelligence

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

Returns 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 sources.

## Facts

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

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-0af24d9c
```

Example prompt: Pull the full ESG profile for Microsoft — I need their CDP score, Scope 1/2/3 emissions, SBTi targets, SEC climate disclosures, and any major controversies before we finalize our due diligence.

## When to prefer this

Use this endpoint when you need a consolidated, per-company ESG snapshot covering emissions, climate commitments, regulatory disclosures, and controversy flags in a single call. Prefer this over generic ESG score endpoints when you specifically need CDP scores, SEC climate filing data, SBTi target status, and Scope 1/2/3 breakdown together for investment screening or due diligence workflows.

## Known failure modes

- Company not found or unrecognized ticker/name — returns empty or error response
- Company has no public ESG disclosures — partial data returned with nulls
- Rate limiting or payment failure (x402) — returns 402 Payment Required
- Stale or unavailable public data for a given company — partial results with caveats

## How this service works

Company ESG intelligence for ESG-investing and due-diligence agents. Returns CDP score, SEC climate disclosures, Scope 1/2/3 emissions, SBTi targets, and ESG controversies from public data.

## Output

Returns a structured ESG profile for the queried company including: CDP disclosure score, SEC climate disclosure filings, Scope 1/2/3 greenhouse gas emissions figures, Science Based Targets initiative (SBTi) commitment and status, and a summary of notable ESG controversies — all sourced from publicly available data.

## 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-0af24d9c/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)
