# ESGPulse EU Taxonomy Alignment Checker

> ESGPulse EU Taxonomy Alignment Checker 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).

Checks whether a business activity qualifies as environmentally sustainable under the EU Taxonomy Regulation, including DNSH criteria, technical screening criteria, green asset ratio implications, and Article 8/9 fund classification impact.

## Facts

- Endpoint: GET https://esgpulse.vercel.app/api/esg/taxonomy
- 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-eu-taxonomy-alignment-checker-23f2e544
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T2NPx_sgqnf099LXOVDyJ

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-eu-taxonomy-alignment-checker-23f2e544
```

Example prompt: Can you check whether our commercial real estate construction activity qualifies as sustainable under the EU Taxonomy — specifically whether it passes the DNSH criteria and technical screening, and what that means for our Article 9 fund's green asset ratio?

## When to prefer this

Use this endpoint when you need to determine whether a specific economic activity qualifies as environmentally sustainable under the EU Taxonomy Regulation, particularly for green asset ratio calculations, SFDR Article 8/9 fund disclosures, or green bond eligibility. Prefer this over general ESG scoring endpoints when the question is specifically about EU regulatory taxonomy alignment rather than broader ESG ratings or CSRD disclosure requirements.

## Known failure modes

- Activity described too vaguely to map to a NACE code — returns ambiguous or no match
- Activity falls outside EU Taxonomy covered sectors — returns not eligible with explanation
- Insufficient detail to assess DNSH criteria — partial results returned
- Payment not received — 402 Payment Required response
- API unavailable on Vercel — 500 or timeout error

## 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 an assessment of whether the specified business activity qualifies as EU Taxonomy-aligned, detailing which environmental objectives it may contribute to, the applicable DNSH (Do No Significant Harm) criteria, technical screening thresholds, and the implications for green asset ratio reporting and Article 8/9 fund classification under SFDR.

## Example request

```json
{
 "lang": "en",
 "topic": "climate",
 "format": "guide",
 "sector": "renewable energy",
 "framework": "CSRD"
}
```

## 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 | sv | da | fi | pt"
      },
      "sector": {
       "type": "string",
       "description": "Energy | Buildings | Transport | Agriculture | Manufacturing | Finance"
      },
      "activity": {
       "type": "string",
       "description": "solar energy generation | commercial real estate | steel manufacturing (economic activity)"
      },
      "objective": {
       "type": "string",
       "description": "all | climate-mitigation | climate-adaptation | water | biodiversity | circular-economy | pollution"
      },
      "entity_type": {
       "type": "string",
       "description": "corporate | financial-institution | fund | bank"
      }
     }
    }
   },
   "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": {
  "activity": "solar energy generation",
  "dnsh_met": true,
  "sfdr_article": "Article 9 eligible",
  "taxonomy_aligned": true,
  "primary_objective": "climate-mitigation",
  "taxonomy_eligible": true,
  "technical_screening_criteria": "GHG lifecycle emissions <100gCO2e/kWh",
  "green_asset_ratio_contribution": "eligible as green asset"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/esgpulse-eu-taxonomy-alignment-checker-23f2e544/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)
