# ProspectPulse Social License Risk API

> ProspectPulse Social License Risk API is a paid API for AI agents from prospectpulse-pi.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns indigenous-rights (FPIC) assessment, water-conflict risk, and ESG red flags for proposed mining activities at any geographic location to evaluate social license to operate before capital commitment.

## Facts

- Endpoint: GET https://prospectpulse-pi.vercel.app/api/prospect/social-license-risk
- 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/prospectpulse-social-license-risk-api-511fa6c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uo2GF9ClIitvNEZ-mpdN3

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 prospectpulse-social-license-risk-api-511fa6c0
```

Example prompt: Before we commit capital to our copper exploration project in the Atacama region of Chile, can you run a social license risk assessment — I need the FPIC and indigenous rights exposure, water conflict risk, and any ESG red flags we should know about?

## When to prefer this

Choose this endpoint when you need pre-investment social risk intelligence for a mining or exploration project — specifically when indigenous rights, FPIC obligations, water-access conflicts, or ESG compliance are material concerns. Prefer over generic ESG databases when you need location-specific community opposition and social-license signals rather than company-level ESG ratings.

## Known failure modes

- Unrecognized or ambiguous location returns a 400 error
- Insufficient data coverage for remote regions may yield low-confidence results
- Payment failure (non-payment or insufficient USDC) returns 402 Payment Required
- Overly broad or polygon-level queries may time out or return partial results
- Rate limiting may apply for high-frequency calls

## How this service works

Global mineral and resource exploration intelligence. USGS MRDS deposit inventory, geochemical anomaly analysis, satellite scene availability, jurisdiction entry-risk,…

## Output

Returns a structured social license assessment including: indigenous-rights and FPIC compliance risk rating, water-conflict risk level, community opposition indicators, ESG red flags, and an overall social-license read for the specified mining location — designed to inform go/no-go decisions before capital is deployed.

## 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": "Response language (ISO 639-1) | en | es | fr | pt | id | tl"
      },
      "project": {
       "type": "string",
       "description": "Optional project name for targeted search | Conga Mine | Pebble Mine | Ring of Fire"
      },
      "location": {
       "type": "string",
       "description": "Location for social license assessment | Peru Cajamarca | Pebble Alaska | Juliaca Peru | Limpopo South Africa | West Papua Indonesia | Northern BC Canada"
      }
     }
    }
   },
   "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": {
  "location": "Cajamarca, Peru",
  "risk_tier": "HIGH",
  "community_opposition": {
   "key_issues": [
    "Water contamination fears",
    "Historical displacement",
    "Benefits distribution"
   ],
   "current_sentiment": "OPPOSED"
  },
  "comparable_conflicts": [
   {
    "country": "Peru",
    "outcome": "Suspended indefinitely — community opposition 2011-present",
    "project": "Conga Mine"
   }
  ],
  "overall_sl_risk_score": 72
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prospectpulse-social-license-risk-api-511fa6c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from prospectpulse-pi.vercel.app](https://www.zero.xyz/host/prospectpulse-pi.vercel.app/llms.txt)
