# Hawaii Conditions — Trail Conditions by Island

> Hawaii Conditions — Trail Conditions by Island 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-14).

Returns real-time trail status, difficulty, length, conditions, and safety alerts for a specified Hawaiian island

## Facts

- Endpoint: GET https://hawaii-conditions.vercel.app/gpt/trails
- 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/hawaii-conditions-trail-conditions-by-island-d98f8d8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yBlvEX-w6AUSqWBYuKOMt

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-trail-conditions-by-island-d98f8d8b
```

Example prompt: What are the current trail conditions on Maui — are any trails closed or flagged with safety alerts right now?

## When to prefer this

Choose this endpoint when you need real-time, government-sourced trail status and safety alerts specifically for Hawaiian islands. It is ideal for travel planning agents, outdoor activity assistants, or safety-check workflows where up-to-date NPS and USGS data matters more than crowd-sourced reviews. Prefer this over generic hiking databases when the user is specifically asking about Hawaii.

## Known failure modes

- Invalid or unsupported island name returns an error or empty result
- Upstream NOAA/NPS data unavailable causes stale or missing conditions
- Trail-level granularity may vary by island — some islands may return aggregate rather than per-trail data
- Network timeout from Vercel serverless function under heavy load

## 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 trail name, open/closed status, difficulty rating, length in miles, a narrative conditions description, any active safety alerts as an array of strings, and a timestamp of when the data was last updated — all sourced in real time from NPS and related government data providers.

## 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",
  "trail",
  "status",
  "difficulty",
  "length_miles",
  "conditions",
  "alerts",
  "updated_at"
 ],
 "properties": {
  "trail": {
   "type": "string"
  },
  "alerts": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "island": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "conditions": {
   "type": "string"
  },
  "difficulty": {
   "type": "string"
  },
  "updated_at": {
   "type": "string",
   "format": "date-time"
  },
  "length_miles": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hawaii-conditions-trail-conditions-by-island-d98f8d8b/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)
