# ProspectPulse Oil & Gas Basin Analysis

> ProspectPulse Oil & Gas Basin Analysis 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-13).

Returns petroleum system details, play types, undiscovered resource estimates, and exploration risk ratings for oil and gas basins worldwide.

## Facts

- Endpoint: GET https://prospectpulse-pi.vercel.app/api/prospect/oil-gas-basin
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prospectpulse-oil-gas-basin-analysis-ac5761f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K8SlrukHKO4rBNNNnCuMP

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-oil-gas-basin-analysis-ac5761f9
```

Example prompt: Can you pull a full sedimentary basin analysis for the Permian Basin — I need the petroleum system, active play types, undiscovered resource estimates, and exploration risk rating for an upstream investment decision?

## When to prefer this

Use this endpoint when an agent needs basin-level petroleum system intelligence, undiscovered resource volumes, or exploration risk scores for oil and gas investment or exploration decisions — especially for upstream petroleum contexts rather than mining or renewable energy domains.

## Known failure modes

- Unknown or unrecognized basin name returns an error or empty result
- Basin outside supported worldwide coverage returns no data
- Malformed request parameters return a 400-level error
- Payment not processed results in 402 Payment Required
- Service unavailability returns a 503 error

## 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 report covering the petroleum system (source, reservoir, seal, trap), identified play types, probabilistic undiscovered oil and gas resource estimates, and a quantified exploration risk assessment for the specified basin.

## 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 | id"
      },
      "basin": {
       "type": "string",
       "description": "Basin or region name | Permian Basin Texas | Santos Basin Brazil | East African Rift | Rovuma Basin Mozambique | Cooper Basin Australia | Tarim Basin China | Barents Sea"
      },
      "country": {
       "type": "string",
       "description": "Country (for governance context) | USA | Brazil | Tanzania | Mozambique | Australia | China | Norway"
      }
     }
    }
   },
   "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": "Offshore Mozambique/Tanzania",
  "basin_name": "Rovuma Basin",
  "basin_type": "Passive margin (rift margin)",
  "exploration_score": 72,
  "discovered_resources": {
   "context": "Eni/ExxonMobil discoveries 2010-2015",
   "gas_bcf": "~100,000 bcf"
  },
  "exploration_maturity": "EMERGING",
  "exploration_recommendation": "World-class gas endowment but LNG development bottlenecked by financing and security..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prospectpulse-oil-gas-basin-analysis-ac5761f9/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)
