# Hawaii Conditions Weather API

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

Returns real-time weather conditions (temperature, wind, humidity, UV index) for a specified Hawaiian island

## Facts

- Endpoint: GET https://hawaii-conditions.vercel.app/gpt/weather
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hawaii-conditions-weather-api-15d586b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KV5-7n9a3zQHPFisX_11E

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-weather-api-15d586b6
```

Example prompt: What are the current weather conditions on Maui — temperature, wind speed, humidity, and UV index?

## When to prefer this

Choose this endpoint when you need real-time Hawaiian island weather specifically — temperature, wind, humidity, and UV index — rather than a general global weather API. Ideal when your query is Hawaii-specific and you need structured, agent-friendly output sourced from NOAA and Open-Meteo.

## Known failure modes

- Unsupported island name returns an error or empty result
- Upstream NOAA or Open-Meteo data unavailable may cause stale or missing data
- Invalid island slug (e.g. typo) returns a validation error
- Rate limiting or payment failure returns 402 Payment Required

## 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 island name, current temperature in Fahrenheit, a text description of weather conditions, wind speed in mph, humidity percentage, UV index, and the timestamp of last update.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "island"
 ],
 "properties": {
  "island": {
   "enum": [
    "oahu",
    "maui",
    "kauai",
    "big-island",
    "molokai",
    "lanai"
   ],
   "type": "string",
   "description": "Island name (e.g. oahu, maui, kauai, big-island)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "island",
  "temperature_f",
  "conditions",
  "wind_mph",
  "humidity_pct",
  "uv_index",
  "updated_at"
 ],
 "properties": {
  "island": {
   "type": "string"
  },
  "uv_index": {
   "type": "number"
  },
  "wind_mph": {
   "type": "number"
  },
  "conditions": {
   "type": "string"
  },
  "updated_at": {
   "type": "string",
   "format": "date-time"
  },
  "humidity_pct": {
   "type": "number"
  },
  "temperature_f": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hawaii-conditions-weather-api-15d586b6/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)
