# Hilton — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for Hilton hotels worldwide by destination with autocomplete suggestions for locations, or convert addresses into exact coordinates. Find your ideal Hilton accommodation and get location details all in one place.

**Category:** Travel | **Website:** [www.hilton.com/en/](https://www.hilton.com/en/) | **Docs:** [parse.bot/marketplace/66489303-b1a3-4d10-b42b-8bc0d74b0eec/hilton-com-api](https://parse.bot/marketplace/66489303-b1a3-4d10-b42b-8bc0d74b0eec/hilton-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-hilton-com-api-66489303/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### autocomplete

Get destination autocomplete suggestions for a partial search query. Returns matching cities, airports, points of interest, and hotel properties. Each suggestion includes a place_id that can be passed to the geocode endpoint for coordinate resolution.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code |
| `query` | string | Yes | Partial search text (e.g., 'New Y', 'Par') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hilton-com-api-66489303/autocomplete \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>","query":"<string>"}'
```

### geocode

Geocode an address or place to get coordinates, bounds, and location metadata. Accepts either a free-text address or a place_id obtained from the autocomplete endpoint. At least one of address or place_id must be provided.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | No | Address or place name to geocode (e.g., 'London, UK', 'Paris, France') |
| `language` | string | No | Language code |
| `place_id` | string | No | Place ID from autocomplete suggestions (e.g., 'dx-airport::4185') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hilton-com-api-66489303/geocode \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>","language":"<string>","place_id":"<string>"}'
```

### search_hotels

Search for Hilton hotels near a destination. Returns hotel details including name, address, coordinates, TripAdvisor ratings, nightly rates, amenities, and brand information. Results are sorted by distance from the destination center.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `currency` | string | No | Currency code for rates (e.g., USD, EUR, GBP) |
| `language` | string | No | Language code for results |
| `limit` | integer | No | Maximum number of hotels to return (1-100) |
| `query` | string | Yes | Destination to search (e.g., 'New York', 'Miami', 'London') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hilton-com-api-66489303/search_hotels \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"currency":"<string>","language":"<string>","limit":"<integer>","query":"<string>"}'
```
