# Interzoid ESG Profile Lookup

> Interzoid ESG Profile Lookup is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Retrieves ESG (Environmental, Social, Governance) rating and profile data for a company by name

## Facts

- Endpoint: GET https://api.interzoid.com/getesgprofile
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-esg-profile-lookup-55ae3066
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GGioNk8T1yLhqQG4COjkd

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 interzoid-esg-profile-lookup-55ae3066
```

Example prompt: Can you pull up the ESG profile for Microsoft — I want to see their environmental commitments, social initiatives, governance practices, and their overall ESG rating?

## When to prefer this

Use this endpoint when you need structured ESG profile data including ratings, environmental, social, and governance summaries for a named company. Ideal for due diligence workflows, ESG screening in investment analysis, CRM/ERP enrichment with sustainability data, or building sustainability dashboards. Prefer this over manual research when you need a fast, structured, machine-readable ESG summary keyed by company name.

## Known failure modes

- Company name not recognized — returns empty or null ESG fields
- Ambiguous company name matching wrong entity — returns profile for wrong company
- Network timeout — no response from API
- Invalid or missing 'lookup' query parameter — returns error response
- Company has no ESG data on file — partial or empty profile returned

## How this service works

Retrieve an ESG (Environmental, Social, Governance) and sustainability profile for a company including key initiatives, ratings, controversies, and reporting frameworks.

## Output

Returns a JSON object with the company's ESG rating (e.g. AAA from MSCI), a summary of environmental commitments, social programs, governance practices, the matched company name, and remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Apple Inc"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Company name to retrieve ESG profile for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Social": "Diversity & Inclusion programs, employee wellbeing initiatives",
  "Credits": "0",
  "ESGRating": "AAA (MSCI)",
  "Governance": "Independent board majority, transparent executive compensation",
  "CompanyName": "Microsoft",
  "Environmental": "Carbon negative by 2030 commitment, 100% renewable energy goal by 2025"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-esg-profile-lookup-55ae3066/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
