# ProspectPulse Jurisdiction Entry-Risk Assessment

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

Returns a comprehensive entry-risk profile for a mining jurisdiction in any of 80+ countries, covering mining code, royalties, permitting timelines, political risk, and operational context.

## Facts

- Endpoint: GET https://prospectpulse-pi.vercel.app/api/prospect/jurisdiction-entry
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prospectpulse-jurisdiction-entry-risk-assessment-c3d886ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I-z7zB3DxT4rv36UNoBA7

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-jurisdiction-entry-risk-assessment-c3d886ab
```

Example prompt: Can you run a full jurisdiction entry-risk assessment for copper mining in the Democratic Republic of Congo — I need the mining code overview, royalty rates, permitting timeline, and political risk score to decide if it's investable?

## When to prefer this

Use this endpoint when an agent needs a fast, structured go/no-go assessment on entering a mining jurisdiction — particularly for initial due diligence, investment screening, or board-level decision support. Prefer over generic country-risk databases when mining-specific detail (royalties, permitting, mineral codes) is required alongside political risk. Pairs well with the ProspectPulse community-opposition and commodity supply/demand endpoints for fuller investment context.

## Known failure modes

- Jurisdiction not covered (outside the 80+ supported countries) — returns error indicating unsupported region
- Ambiguous or misspelled country/jurisdiction name — may return nearest match or error
- Payment not processed or x402 handshake fails — call not fulfilled
- Rate limiting if too many rapid calls — returns 429 or equivalent
- Outdated political data if recent coup or regulatory change has not been indexed yet

## How this service works

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

## Output

A structured risk profile covering: mining code and legal framework summary, royalty and fiscal terms, typical permitting timeline, political stability and sovereign risk score, and an overall investability judgment for the specified jurisdiction.

## 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 | ru | zh | ar"
      },
      "country": {
       "type": "string",
       "description": "Country for exploration entry assessment | Canada | Peru | DRC | Ghana | Kazakhstan | Philippines | Greenland | Ecuador"
      },
      "commodity": {
       "type": "string",
       "description": "Target commodity (for royalty/fiscal specifics) | gold | copper | lithium | nickel"
      }
     }
    }
   },
   "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": {
  "country": "Peru",
  "risk_tier": "ACCEPTABLE WITH MITIGATION",
  "entry_risk_score": 35,
  "royalty_structure": {
   "type": "Revenue-based",
   "rate_pct": "1-12% sliding scale",
   "negotiability": "Fixed by law for most minerals"
  },
  "overall_assessment": "Peru offers a large mineral endowment and established mining code, but social license is the critical constraint..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prospectpulse-jurisdiction-entry-risk-assessment-c3d886ab/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)
