# ProspectPulse Satellite Scene Availability & Remote Sensing Guide

> ProspectPulse Satellite Scene Availability & Remote Sensing Guide is a paid API for AI agents from prospectpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns which free Sentinel-1/2, ASTER, and Landsat scenes cover a target area, plus a geological remote-sensing guide mapping each sensor to detectable alteration minerals for exploration.

## Facts

- Endpoint: GET https://prospectpulse.theaslangroupllc.com/api/prospect/satellite-availability
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prospectpulse-satellite-scene-availability-remote-sensing-guide-58887797
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_joXbgwSKf-YOEPsUVITqK

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-satellite-scene-availability-remote-sensing-guide-58887797
```

Example prompt: What free Sentinel-1, Sentinel-2, ASTER, and Landsat scenes cover the Carlin Trend in Nevada, and which sensors would best detect clay and iron-oxide alteration at the target?

## When to prefer this

Use this endpoint when an exploration or geology agent needs to quickly identify which free satellite datasets (Sentinel-1/2, ASTER, Landsat) cover a specific mineral exploration target, and wants guidance on which sensor to use for particular alteration mineral mapping. Prefer over generic geospatial APIs because it combines scene availability lookup with a domain-specific geological remote-sensing guide tailored to mineral exploration workflows.

## Known failure modes

- Target area outside any available satellite coverage — returns empty scene list
- Invalid or malformed coordinates/bounding box — returns 400 error
- No scenes available within requested date range — returns empty results
- Payment failure or missing x402 payment header — returns 402 Payment Required
- API timeout if coverage database is temporarily unreachable — returns 503

## How this service works

Which free Sentinel-1/2, ASTER, and Landsat scenes cover a target area, plus a geological remote-sensing guide, for exploration and geology agents. Returns scene availability and which sensor maps which alteration mineral.

## Output

Returns a list of available free satellite scenes (Sentinel-1, Sentinel-2, ASTER, Landsat) covering the queried target area, including scene IDs, coverage dates, and sensor metadata, along with a geological remote-sensing guide explaining which sensor is best suited for mapping specific alteration minerals (e.g. argillic, propylitic, iron oxide, sericitic) relevant to mineral exploration.

## 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) | -23.8 | 39.5 | -0.5 | 60.2"
      },
      "lon": {
       "type": "string",
       "description": "Longitude (decimal degrees) | 119.4 | -117.3 | 28.6 | 25.4"
      },
      "lang": {
       "type": "string",
       "description": "Response language (ISO 639-1) | en | es | fr | pt | ru | zh | id"
      },
      "commodity": {
       "type": "string",
       "description": "Target commodity for alteration-type guidance | gold | copper | lithium | nickel | REE"
      }
     }
    }
   },
   "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": {
  "data_summary": {
   "aster_scenes": 3,
   "landsat_scenes": 4,
   "sentinel1_scenes": 2,
   "sentinel2_scenes": 4,
   "overall_data_quality": "EXCELLENT"
  },
  "target_coordinates": "-23.8°S, 119.4°E (Pilbara, Western Australia)",
  "recommended_sensors": [
   {
    "sensor": "ASTER",
    "best_for": "Hydrothermal alteration mineral mapping — kaolinite, alunite, illite, chlorite"
   }
  ],
  "alteration_mapping_potential": {
   "rating": "HIGH",
   "target_minerals_detectable": [
    "kaolinite",
    "alunite",
    "iron oxides",
    "carbonates"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prospectpulse-satellite-scene-availability-remote-sensing-guide-58887797/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)
