# Hawaii Conditions — Restaurant Details Lookup

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

Returns detailed information for a specific Hawaiian restaurant by Google Place ID, including hours, contact info, rating, price range, and reservation availability.

## Facts

- Endpoint: GET https://hawaii-conditions.vercel.app/gpt/restaurant
- Price: $0.15/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-details-lookup-681dc2b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ts_IsKbe8QYd35C4T2JSj

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-details-lookup-681dc2b0
```

Example prompt: I found a restaurant in Maui I want to visit — can you pull up the full details for it using its Google Place ID place_id_abc123? I need the hours, phone number, whether they take reservations, and the price range.

## When to prefer this

Use this endpoint after first obtaining a valid Google place_id from the companion search_restaurants endpoint on the same service. This endpoint is the right choice when you need full structured details — hours, phone, reservations — for a specific Hawaiian restaurant rather than a list of candidates. Prefer it over generic Google Places lookups when you're already in the Hawaii Conditions ecosystem and want normalized, agent-ready output.

## Known failure modes

- Invalid or non-existent place_id returns an error or empty result
- place_id from non-Hawaiian restaurant may return no match
- Stale data if the restaurant has recently changed hours or closed
- Google Places API outage causes upstream failure
- Missing optional fields if the restaurant has incomplete Google listing data

## 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

A JSON object containing the restaurant's Google place_id, island location, cuisine type, street address, phone number, operating hours, numerical rating, price range string, boolean reservation availability, and a timestamp of when the data was last updated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "place_id"
 ],
 "properties": {
  "place_id": {
   "type": "string",
   "description": "Google place_id returned from search_restaurants"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "place_id",
  "island",
  "cuisine",
  "address",
  "phone",
  "hours",
  "rating",
  "price_range",
  "reservations",
  "updated_at"
 ],
 "properties": {
  "hours": {
   "type": "string"
  },
  "phone": {
   "type": "string"
  },
  "island": {
   "type": "string"
  },
  "rating": {
   "type": "number"
  },
  "address": {
   "type": "string"
  },
  "cuisine": {
   "type": "string"
  },
  "place_id": {
   "type": "string"
  },
  "updated_at": {
   "type": "string",
   "format": "date-time"
  },
  "price_range": {
   "type": "string"
  },
  "reservations": {
   "type": "boolean"
  }
 }
}
```

## More

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