# whatchuneed Accommodation Details

> whatchuneed Accommodation Details 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-14).

Retrieves detailed information about a specific accommodation property including name, photos, rating, address, reviews, and amenities

## Facts

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

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-accommodation-details-d513a5cb -d '<json body>'
```

Example prompt: Can you pull up the full details for property ID 'htl_abc123' — I want to see its rating, amenities, address, and any guest reviews?

## When to prefer this

Use this endpoint when you have a specific accommodation property ID and need comprehensive property details including photos, rating, address, reviews, and amenities in a single call. Prefer this over search endpoints when you already know the property identifier and need to enrich or display its full profile.

## Known failure modes

- Invalid or unknown propertyId returns failure response or 404
- Missing required propertyId field returns validation error
- Property no longer listed returns empty or error response
- Payment failure via x402 protocol blocks request execution
- Network timeout if upstream accommodation data source is unavailable

## 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 object containing the property's name, array of photo URLs, numerical rating, street address, array of review objects, and array of amenity strings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "propertyId"
 ],
 "properties": {
  "propertyId": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "name": {
     "type": "string"
    },
    "photos": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "rating": {
     "type": "number"
    },
    "address": {
     "type": "string"
    },
    "reviews": {
     "type": "array",
     "items": {
      "type": "object"
     }
    },
    "amenities": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-accommodation-details-d513a5cb/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)
