# Hawaii Conditions — Volcano Status

> Hawaii Conditions — Volcano Status is a paid API for AI agents from hawaii-conditions.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns real-time volcano alert level, eruption status, lava flow hazard, vog advisory, and park closures for Hawaiian volcanoes

## Facts

- Endpoint: GET https://hawaii-conditions.vercel.app/gpt/volcano
- 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/hawaii-conditions-volcano-status-3a91b210
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5s6HoXJBGAoC4C92UM9c7

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 hawaii-conditions-volcano-status-3a91b210
```

Example prompt: What's the current volcano alert level in Hawaii right now — is Kilauea erupting, is there any lava flow hazard, and are any parts of the national park closed?

## When to prefer this

Choose this endpoint when you need authoritative, real-time volcanic hazard conditions for Hawaii aggregated from USGS and NPS — especially alert level, eruption status, lava flow risk, and park closures — rather than general Hawaii travel or weather data.

## Known failure modes

- Upstream USGS or NPS data unavailable — stale or missing data
- Network timeout reaching the Vercel-hosted endpoint
- Payment not accepted (x402 payment required, 0.25 USDC per call)
- Malformed response if volcano data feed is temporarily down
- Empty park_areas_closed array may indicate no closures or data unavailability

## How this service works

Real-time surf, weather, trails, volcano, ocean safety, and restaurant data for every Hawaiian island. Built for AI agents. Powered by NOAA, USGS, NPS, Open-Meteo and Google Places.

## Output

Returns a JSON object with the volcano name, current USGS alert level (e.g. Watch, Warning, Advisory), eruption status description, boolean lava flow hazard flag, boolean vog advisory flag, a list of currently closed park areas, and the timestamp of last data update.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "volcano",
  "alert_level",
  "eruption_status",
  "lava_flow_hazard",
  "vog_advisory",
  "park_areas_closed",
  "updated_at"
 ],
 "properties": {
  "volcano": {
   "type": "string"
  },
  "updated_at": {
   "type": "string",
   "format": "date-time"
  },
  "alert_level": {
   "type": "string"
  },
  "vog_advisory": {
   "type": "boolean"
  },
  "eruption_status": {
   "type": "string"
  },
  "lava_flow_hazard": {
   "type": "boolean"
  },
  "park_areas_closed": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hawaii-conditions-volcano-status-3a91b210/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hawaii-conditions.vercel.app](https://www.zero.xyz/host/hawaii-conditions.vercel.app/llms.txt)
