# Hawaii Conditions — Restaurant Search

> Hawaii Conditions — Restaurant Search 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 restaurant listings for a specified Hawaiian location, filterable by cuisine type, price range, and open status, powered by Google Places.

## Facts

- Endpoint: GET https://hawaii-conditions.vercel.app/gpt/restaurants
- 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-restaurant-search-d98566cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tN-1wBACo9PDoJTDhvDxZ

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-restaurant-search-d98566cd
```

Example prompt: Find me highly rated Japanese restaurants open right now in Waikiki, and keep it mid-range on price.

## When to prefer this

Choose this endpoint when the user is specifically looking for restaurant recommendations within Hawaii (any island or area) and needs real-time data including ratings and open status. It is purpose-built for Hawaiian locations and combines Google Places data with a Hawaii-focused context, making it more reliable than general-purpose restaurant APIs for this geography.

## Known failure modes

- Missing required 'location' field returns a validation error
- Unknown or non-Hawaiian location may return empty restaurant list
- Google Places data may be stale or incomplete for remote areas
- open_now filter depends on accurate business hours in Google Places data
- Network or upstream Google Places API outage may cause 5xx errors

## 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 an array of restaurants for the requested Hawaiian location, each with name, cuisine type, area, and rating, along with applied filters (price, cuisine) and a timestamp indicating when the data was last updated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "price": {
   "enum": [
    "$",
    "$$",
    "$$$",
    "$$$$"
   ],
   "type": "string",
   "description": "Price range"
  },
  "cuisine": {
   "type": "string",
   "description": "Cuisine type (e.g. Hawaiian, Japanese, Mexican)"
  },
  "location": {
   "type": "string",
   "description": "Location to search (e.g. Waikiki, Kailua, Lahaina)"
  },
  "open_now": {
   "type": "boolean",
   "description": "Filter for currently open restaurants"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location",
  "restaurants",
  "updated_at"
 ],
 "properties": {
  "price": {
   "type": [
    "string",
    "null"
   ]
  },
  "cuisine": {
   "type": [
    "string",
    "null"
   ]
  },
  "location": {
   "type": "string"
  },
  "updated_at": {
   "type": "string",
   "format": "date-time"
  },
  "restaurants": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "name",
     "cuisine",
     "area",
     "rating"
    ],
    "properties": {
     "area": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "rating": {
      "type": "number"
     },
     "cuisine": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hawaii-conditions-restaurant-search-d98566cd/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)
