# Whatchuneed Nearby Accommodation Finder

> Whatchuneed Nearby Accommodation Finder is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a list of nearby accommodation options (name, type, rating, distance) for a given location string and optional search radius.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/accommodation/nearby
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-nearby-accommodation-finder-ade97ba4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CC-Gjk5_dmCgBlgHvSs4Y

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 whatchuneed-nearby-accommodation-finder-ade97ba4 -d '<json body>'
```

Example prompt: Can you find nearby accommodations within 3km of Times Square, New York?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of nearby accommodations given a location name or address and an optional radius, without needing full booking functionality. It is ideal for travel planning agents, itinerary builders, or location-aware assistants that need to surface lodging options programmatically without committing to a specific booking platform.

## Known failure modes

- Missing required 'location' field returns an error or empty result
- Unrecognized or ambiguous location strings may return zero results
- Overly small radius may return an empty data array
- Service unavailability returns a non-success response
- Invalid radius type (non-integer) may cause a validation error

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and a data array of accommodation listings, each containing the name of the property, its type (e.g. hotel, hostel, B&B), a numeric rating, and the distance from the specified location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "radius": {
   "type": "integer"
  },
  "location": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "type": {
      "type": "string"
     },
     "rating": {
      "type": "number"
     },
     "distance": {
      "type": "number"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-nearby-accommodation-finder-ade97ba4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
