# ProspectPulse Exploration Snapshot

> ProspectPulse Exploration Snapshot is a paid API for AI agents from prospectpulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a deterministic, facts-only data snapshot for a mineral exploration target including USGS MRDS deposit counts, geochemical anomaly stats, satellite scene availability, World Bank governance score, and GDELT social-license signal.

## Facts

- Endpoint: GET https://prospectpulse.theaslangroupllc.com/api/prospect/exploration-snapshot
- 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/prospectpulse-exploration-snapshot-1f1adfff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aaWSvRU6cXX7iKIHYxOLm

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-exploration-snapshot-1f1adfff
```

Example prompt: Give me a quick facts-only snapshot for a copper exploration target in the Atacama region of Chile — I want the USGS MRDS deposit count, geochemical anomaly stats, available satellite scenes, World Bank governance score, and GDELT social-license signal, no interpretation.

## When to prefer this

Use this endpoint when you need a quick, deterministic, no-frills data pull for an exploration target without paying for or waiting on AI-synthesized analysis. It is ideal for pre-screening many targets in bulk at low cost ($0.25/call), comparing raw metrics across jurisdictions, or validating data availability before purchasing the full /api/prospect/exploration-brief report. Choose this over the full brief when you only need raw numbers and will apply your own analysis layer.

## Known failure modes

- Target area too vague or unresolvable — returns error on location parsing
- Jurisdiction not covered by World Bank governance data — governance score field returns null
- No USGS MRDS records exist for the specified region — deposit count returns zero
- GDELT signal unavailable for low-media-coverage regions — social-license field may be absent
- Rate limiting or payment failure — 402 payment required response

## How this service works

Deterministic facts-only snapshot for exploration targets: USGS MRDS deposit counts, geochemical anomaly stats, satellite scene availability, World Bank jurisdiction governance score, and GDELT social-license signal — raw numbers, no AI synthesis. Lite-tier preview of /api/prospect/exploration-brief.

## Output

A structured, raw-numbers-only response containing: USGS MRDS deposit count for the target area, geochemical anomaly statistics from national databases, available Sentinel/Landsat satellite scene count, World Bank governance score for the jurisdiction, and GDELT-derived social-license sentiment signal. No AI interpretation or narrative synthesis is included — this is a lite-tier preview of the full exploration-brief endpoint.

## 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": {
      "lat": {
       "type": "string",
       "description": "Latitude (decimal degrees) — used if region not recognized | -23.5 | 39.8 | -0.5"
      },
      "lon": {
       "type": "string",
       "description": "Longitude (decimal degrees) | -68.0 | -116.5 | 28.0"
      },
      "region": {
       "type": "string",
       "description": "Target region or area | Atacama lithium triangle | Northern Ontario gold | West African gold belt | Pilbara iron ore province"
      },
      "country": {
       "type": "string",
       "description": "Country (for jurisdiction + governance) | Chile | Canada | Ghana | Australia | DRC | Kazakhstan"
      },
      "commodity": {
       "type": "string",
       "description": "Target commodity | lithium | gold | copper | nickel | cobalt | REE | uranium"
      }
     }
    }
   },
   "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": {
  "target": {
   "label": "Atacama Lithium Triangle — Chile Sector",
   "country": "Chile",
   "commodity": "lithium"
  },
  "upsell": {
   "adds": "AI-synthesized executive summary, phased work program, risk matrix, and proceed/pass recommendation",
   "price_usd": 0.35,
   "full_product": "/api/prospect/exploration-brief"
  },
  "geology": {
   "producers": 3,
   "deposits_total": 14,
   "data_availability": "strong"
  },
  "satellite": {
   "aster_scenes": 2,
   "landsat_scenes": 4,
   "sentinel1_scenes": 3,
   "sentinel2_scenes": 5
  },
  "geochemistry": {
   "elements": {
    "LI": {
     "max": 2103.9,
     "p90": 1540.2,
     "mean": 812.4,
     "count": 42
    }
   }
  },
  "jurisdiction": {
   "risk_level": "LOW",
   "overall_score": 71
  },
  "social_license": {
   "media_tone_60d": -0.3,
   "opposition_articles_60d": 2
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prospectpulse-exploration-snapshot-1f1adfff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from prospectpulse.theaslangroupllc.com](https://www.zero.xyz/host/prospectpulse.theaslangroupllc.com/llms.txt)
